forked from kirjs/react-highcharts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.05 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
{
"name": "react-highcharts",
"version": "15.0.0",
"description": "React wrapper for highcharts",
"main": "dist/ReactHighcharts.js",
"scripts": {
"test": "webpack && mocha test/unit",
"e2e": "nightwatch test/e2e/e2e-launcher.js -e local --config nightwatch.js ",
"e2e-sc": "nightwatch test/e2e/e2e-launcher.js -e saucelabs --config nightwatch.js ",
"build": "webpack && webpack --env.p && webpack --env.b && webpack --env.p --env.b",
"demo": "cd demo && webpack && sh generate-contents.sh && ../node_modules/.bin/webpack-dev-server --content-base dist/",
"prepublish": "npm run build && npm run copy-bundles",
"copy-bundles": "sh ./src/copy-bundles.sh",
"deploy-demo": "./demo/deploy.sh",
"generate-modules": "(cd src; sh ./generate-modules.sh)",
"preversion": "npm test",
"version": "npm run prepublish",
"postversion": "git push && git push --tags"
},
"author": "Kirill Cherkashin",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kirjs/react-highcharts"
},
"peerDependencies": {
"react": "~0.14 || ^15.0.0 || ^16.0.0",
"react-dom": "~0.14 || ^15.0.0 || ^16.0.0"
},
"bugs": "https://github.com/kirjs/react-highcharts/issues",
"keywords": [
"chart",
"react",
"highcharts",
"graph"
],
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.24.0",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-2": "^6.18.0",
"create-react-class": "^15.5.2",
"exports-loader": "^0.6.2",
"file-loader": "^0.10.1",
"highlight.js": "^9.10.0",
"imports-loader": "^0.7.1",
"jsdom": "^9.9.1",
"mocha": "^3.2.0",
"mock-require": "^2.0.1",
"nightwatch": "^0.9.6",
"prop-types": "^15.5.8",
"raw-loader": "^0.5.1",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-highlight": "^0.9.0",
"sinon": "^2.0.0",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.2"
},
"dependencies": {
"highcharts": "^6.0.0"
}
}