-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.01 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.01 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "react-components",
"version": "0.0.1",
"description": "Basic set of UI components using the React component library",
"main": "index.html",
"repository": {
"type": "git",
"url": "git+https://github.com/gdw-atwork/react-components.git"
},
"author": "Gabriel Wingard",
"license": "MIT",
"bugs": {
"url": "https://github.com/gdw-atwork/react-components/issues"
},
"homepage": "https://github.com/gdw-atwork/react-components#readme",
"engines": {
"node": ">=4.6.0",
"npm": "^2.15.9"
},
"scripts": {
"clean": "better-npm-run clean",
"test": "echo \"Error: no test specified\" && exit 1",
"deploy": "better-npm-run deploy"
},
"betterScripts": {
"clean": {
"command": "rimraf dist/* && rimraf build/*",
"env": {}
},
"build:demo": {
"command": "webpack -d",
"env": {
"DEMO": true
}
},
"build:dist": {
"command": "webpack -d",
"env": {}
},
"deploy": {
"command": "better-npm-run clean && better-npm-run build:dist && better-npm-run build:demo"
}
},
"dependencies": {
"d3": "^4.2.6",
"react-faux-dom": "^3.0.0"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-core": "^6.17.0",
"babel-eslint": "^7.0.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"better-npm-run": "0.0.11",
"css-loader": "^0.25.0",
"eslint": "^3.7.0",
"eslint-config-standard": "^6.2.0",
"eslint-config-standard-react": "^4.2.0",
"eslint-loader": "^1.5.0",
"eslint-plugin-promise": "^2.0.1",
"eslint-plugin-react": "^6.3.0",
"eslint-plugin-standard": "^2.0.1",
"extract-text-webpack-plugin": "^1.0.1",
"html-webpack-plugin": "^2.22.0",
"node-sass": "^3.10.1",
"normalize.css": "^4.2.0",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"rimraf": "^2.5.4",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"webpack": "^1.13.2"
}
}