-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
50 lines (50 loc) · 1.22 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
{
"name": "react-emoji-react",
"version": "0.3.0",
"description": "a clone of slack emoji reactions in react",
"main": "dist/index.js",
"scripts": {
"demo": "./node_modules/.bin/webpack --config webpack.demo.config.js --watch",
"build": "babel src --out-dir dist",
"watch": "babel src --watch --out-dir dist",
"prepublish": "npm run build"
},
"keywords": [
"react",
"slack",
"emoji",
"reactions",
"like",
"button"
],
"repository": {
"type": "git",
"url": "git+https://github.com/conorhastings/react-emoji-react.git"
},
"author": "Conor Hastings",
"license": "MIT",
"bugs": {
"url": "https://github.com/conorhastings/react-emoji-react/issues"
},
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-core": "^6.4.5",
"babel-loader": "^6.2.2",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-2": "^6.3.13",
"file-loader": "^0.8.5",
"json-loader": "^0.5.4",
"react": "^0.14.7",
"react-dom": "^0.14.7",
"url-loader": "^0.5.7",
"webpack": "^1.12.13"
},
"peerDependencies": {
"react": ">= 0.14.0",
"react-dom": ">= 0.14.0"
},
"dependencies": {
"get-emoji": "^2.0.0"
}
}