forked from kirjs/react-highcharts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.93 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.93 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
58
59
60
61
62
63
{
"name": "react-highcharts",
"version": "10.0.2",
"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 -p && webpack -b && webpack -p -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": "^15.3.1",
"react-dom": "^15.3.1"
},
"bugs": "https://github.com/kirjs/react-highcharts/issues",
"keywords": [
"chart",
"react",
"highcharts",
"graph"
],
"devDependencies": {
"babel-core": "^6.6.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.5.0",
"exports-loader": "^0.6.2",
"file-loader": "^0.9.0",
"highlight.js": "^9.3.0",
"imports-loader": "^0.6.4",
"jsdom": "^9.0.0",
"mocha": "^3.0.0",
"mock-require": "^1.3.0",
"nightwatch": "^0.9.6",
"raw-loader": "^0.5.1",
"react": "^15.3.1",
"react-addons-test-utils": "^15.3.1",
"react-dom": "^15.3.1",
"react-highlight": "^0.8.0",
"sinon": "^1.17.4",
"webpack": "^1.5.3",
"webpack-dev-server": "^1.10.1"
},
"dependencies": {
"highcharts": "^5.0.0"
}
}