-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.36 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.36 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
{
"name": "react-force",
"version": "1.0.0",
"description": "integrate D3 Froce Layout with ReactJS for scalable and interactive data vis",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/hkjpotato/react-force.git"
},
"scripts": {
"start": "webpack-dev-server --config webpack.config.js",
"test": "jest --watch"
},
"keywords": [
"react",
"d3 force"
],
"author": "hkjpotato <hkjpotato@gmail.com> (kjhuang.com)",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.25.0",
"babel-jest": "^21.2.0",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"enzyme": "^2.8.2",
"jest": "^21.2.1",
"react-hot-loader": "^3.0.0-beta.7",
"react-test-renderer": "^15.5.4",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.5"
},
"dependencies": {
"d3": "^3.5.17",
"react": "^15.6.0",
"react-dom": "^15.6.0"
},
"engines": {
"node": ">=4.2.4"
},
"jest": {
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleDirectories": [
"node_modules",
"bower_components",
"shared"
],
"moduleNameMapper": {
"\\.(css|less)$": "<rootDir>/__mocks__/styleMock.js",
"\\.(gif|ttf|eot|svg)$": "<rootDir>/__mocks__/fileMock.js"
}
}
}