-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.49 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": "component-kit",
"version": "0.1.15",
"description": "component-kit, a library for modern data-driven applications",
"main": "./dist/component-kit.js",
"scripts": {
"build:develop": "cross-env NODE_ENV=development webpack src/index.js dist/component-kit.js",
"build:production": "cross-env NODE_ENV=production webpack src/index.js dist/component-kit.min.js",
"build:publish": "npm run build:develop && npm run build:production",
"build-watch": "npm run webpack --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kennetpostigo/component-kit.git"
},
"keywords": [
"component-kit",
"component",
"UI",
"data-driven"
],
"author": "Kennet Postigo <kennetfpostigo@gmail.com> (http://kpostigo.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/kennetpostigo/component-kit/issues"
},
"homepage": "https://github.com/kennetpostigo/component-kit#readme",
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0"
},
"devDependencies": {
"babel-cli": "6.10.1",
"babel-core": "6.9.1",
"babel-loader": "6.2.4",
"babel-plugin-syntax-jsx": "6.8.0",
"babel-preset-es2015": "6.9.0",
"babel-preset-react": "6.5.0",
"cross-env": "1.0.8",
"eslint": "2.12.0",
"eslint-plugin-babel": "3.2.0",
"eslint-plugin-react": "5.1.1",
"webpack": "1.13.1"
},
"dependencies": {
"aphrodite": "0.3.3",
"d3": "3.5.17",
"react-faux-dom": "2.5.0",
"react-motion": "0.4.4"
}
}