forked from missive/emoji-mart
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.77 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "emoji-mart-lite",
"version": "0.6.1",
"description": "Customizable Slack-like emoji picker for React (lite: native emoji only)",
"main": "dist/emoji-mart-lite.js",
"repository": {
"type": "git",
"url": "[email protected]:vaskevich/emoji-mart-lite.git"
},
"keywords": [
"react",
"emoji",
"picker"
],
"author": "Oleg Vaskevich",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/missive/emoji-mart-lite/issues"
},
"homepage": "https://github.com/missive/emoji-mart-lite",
"dependencies": {},
"peerDependencies": {
"react": "^16.10.2"
},
"devDependencies": {
"babel-core": "6.7.2",
"babel-loader": "6.2.4",
"babel-plugin-transform-es2015-destructuring": "6.9.0",
"babel-plugin-transform-object-rest-spread": "6.8.0",
"babel-preset-es2015": "6.6.0",
"babel-preset-react": "6.5.0",
"emoji-datasource": "2.4.4",
"emojilib": "2.0.2",
"inflection": "1.10.0",
"jasmine-core": "^2.5.2",
"karma": "^1.4.0",
"karma-chrome-launcher": "^2.0.0",
"karma-cli": "^1.0.1",
"karma-jasmine": "^1.1.0",
"karma-webpack": "^2.0.2",
"mkdirp": "0.5.1",
"prop-types": "^15.5.10",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"rimraf": "2.5.2",
"svg-inline-loader": "0.4.1",
"svg-inline-react": "3.2.0",
"webpack": "1.12.14"
},
"scripts": {
"clean": "rimraf data/ dist/",
"build:data": "node scripts/build-data",
"build:example": "node scripts/build-example",
"build:dist": "node scripts/build-dist",
"build": "npm run build:data && npm run build:example && npm run build:dist",
"watch": "node scripts/watch",
"test": "NODE_ENV=test ./node_modules/karma/bin/karma start",
"prepublish": "npm run clean && npm run build"
}
}