-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
47 lines (47 loc) · 1.25 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
{
"name": "cake-chart",
"version": "0.2.3",
"description": "Interactive multi-layer pie chart",
"main": "lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "./node_modules/.bin/babel src --stage 0 --out-dir lib --optional runtime",
"prepublish": "npm run build",
"version": "npm publish && git add -A .",
"postversion": "git push"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexkuz/cake-chart.git"
},
"keywords": [
"pie-chart",
"react"
],
"author": "Alexander <alexkuz@gmail.com> (http://kuzya.org/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/alexkuz/cake-chart/issues"
},
"homepage": "https://github.com/alexkuz/cake-chart#readme",
"devDependencies": {
"babel": "^5.8.21",
"babel-eslint": "^4.0.5",
"babel-runtime": "^5.8.20",
"eslint": "^1.1.0",
"eslint-loader": "^1.0.0",
"eslint-plugin-babel": "^2.0.0",
"eslint-plugin-react": "^3.2.2"
},
"peerDependencies": {
"react": "^0.13.3"
},
"dependencies": {
"classnames": "^2.1.3",
"jss": "^2.1.3",
"jss-vendor-prefixer": "^0.2.2",
"lodash.throttle": "^3.0.4",
"react-jss": "^1.0.4",
"react-pure-render": "^1.0.2"
}
}