-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
73 lines (73 loc) · 2.23 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "react-json-graph",
"description": "React Component for rendering graphs in JSON Graph Format",
"version": "2.0.2",
"author": "antonKalinin <[email protected]>",
"license": "MIT",
"repository": "antonKalinin/react-json-graph",
"homepage": "http://antonkalinin.github.io/react-json-graph/",
"bugs": {
"url": "https://github.com/antonKalinin/react-json-graph/issues"
},
"peerDependencies": {
"react": ">=0.14.0 || >=15.0.0",
"react-dom": ">=0.14.0 || >=15.0.0"
},
"devDependencies": {
"babel-core": "^6.7.6",
"babel-eslint": "^8.0.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-object-rest-spread": "^6.6.5",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.22.0",
"css-loader": "^0.28.0",
"eslint": "^4.7.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-flowtype": "^2.20.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.3.0",
"flow-bin": "^0.54.1",
"gh-pages": "^1.0.0",
"node-sass": "^4.5.2",
"postcss": "^6.0.11",
"postcss-cssnext": "^3.0.2",
"postcss-loader": "^2.0.6",
"react": ">=15.0.0",
"react-dom": ">=15.0.0",
"react-redux": "^5.0.4",
"react-toolbox": "^2.0.0-beta.8",
"redux": "^3.6.0",
"sass-loader": "^6.0.3",
"style-loader": "^0.18.2",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.4.2"
},
"files": [
"readme.md",
"index.js"
],
"keywords": [
"react",
"graph",
"react-component",
"component",
"json",
"network"
],
"engine": {
"node": ">=6.0.0"
},
"scripts": {
"build": "webpack --config webpack.config.js",
"build-example": "webpack --config webpack.example.config.js",
"start": "webpack --watch --config webpack.dev.config.js",
"release": "npm run build && npm publish",
"release-patch": "npm run build && npm version patch && npm publish",
"release-minor": "npm run build && npm version minor && npm publish",
"release-pages": "npm run build-example && gh-pages -d dist",
"flow": "flow || true",
"flow-coverage": "flow-coverage-report -i 'src/**/*.js' -f node_modules/flow-bin/vendor/flow || true"
}
}