forked from kirjs/react-highcharts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.28 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
{
"name": "react-highcharts",
"version": "16.0.1",
"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.26.0",
"babel-core": "^6.24.0",
"babel-loader": "^7.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-export-default": "^7.0.0-alpha.20",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"create-react-class": "^15.6.2",
"css-loader": "^0.28.8",
"exports-loader": "^0.6.4",
"file-loader": "^1.1.6",
"highlight.js": "^9.12.0",
"imports-loader": "^0.7.1",
"jsdom": "^11.5.1",
"mocha": "^4.1.0",
"mock-require": "^2.0.2",
"nightwatch": "^0.9.19",
"prop-types": "^15.6.0",
"raw-loader": "^0.5.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"sinon": "^4.1.3",
"style-loader": "^0.19.1",
"uglifyjs-webpack-plugin": "^1.1.6",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.9.6",
"prismjs": "^1.9.0",
"react-prism": "^4.3.2"
},
"dependencies": {
"highcharts": "^6.0.4"
}
}