-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
52 lines (52 loc) · 1.34 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
{
"name": "react-svg-buttons",
"description": "Configurable animated SVG buttons for react",
"version": "0.4.0",
"main": "lib",
"author": {
"name": "Raphaël Benitte"
},
"maintainers": [
{
"name": "plouc"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/plouc/react-svg-buttons.git"
},
"bugs": {
"url": "https://github.com/plouc/react-svg-buttons/issues"
},
"scripts": {
"build": "NODE_ENV=production rm -rf lib/* && babel src --no-comments --out-dir lib",
"watch": "NODE_ENV=development babel src --out-dir lib --watch",
"build:demo-lib:watch": "NODE_ENV=development babel src --out-dir demo/src/lib --watch",
"format": "prettier --tab-width=4 --bracket-spacing --no-semi --trailing-comma es5 --single-quote --write 'src/**/*.js' 'demo/src/**/*.js'",
"prepublish": "npm run build"
},
"dependencies": {
"prop-types": "^15.5.10",
"react-motion": "^0.5.0"
},
"devDependencies": {
"babel-cli": "6.11.4",
"babel-core": "6.11.4",
"babel-preset-es2015": "6.9.0",
"babel-preset-react": "6.11.1",
"babel-preset-stage-2": "6.11.0",
"prettier": "^1.5.3",
"react": "^15.4.1"
},
"peerDependencies": {
"react": "^15.4.1"
},
"keywords": [
"react",
"react-component",
"icon",
"button",
"ui"
]
}