-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.02 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
{
"name": "react-visual-graphic",
"version": "0.2.0",
"description": "react visual graphic collections",
"main": "./lib/index.js",
"scripts": {
"test": "BABEL_JEST_STAGE=0 jest",
"build": "rm -rf ./lib && babel -w --stage 0 src --out-dir lib"
},
"author": "ElixirDoc team",
"license": "Apache 2.0",
"devDependencies": {
"babel-core": "^5.8.24",
"babel-jest": "^5.3.0",
"babel-loader": "^5.3.2",
"css-loader": "^0.18.0",
"dsv-loader": "^1.0.0",
"jest-cli": "^0.5.8",
"json-loader": "^0.5.3",
"jsx-loader": "^0.13.2",
"react-addons-test-utils": "^0.14.0",
"react-hot-loader": "^1.3.0",
"style-loader": "^0.12.4",
"webpack": "^1.12.2",
"webpack-dev-server": "^1.11.0"
},
"peerDependencies": {
"react": "^0.14.1"
},
"dependencies": {
"d3": "^3.5.6",
"react-dom": "^0.14.0",
"react-faux-dom": "^2.0.1"
},
"jest": {
"scriptPreprocessor": "./node_modules/babel-jest",
"unmockedModulePathPatterns": [
"./node_modules/react"
]
}
}