-
Notifications
You must be signed in to change notification settings - Fork 108
/
package.json
61 lines (61 loc) · 1.49 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
{
"name": "highcharts-react-official",
"version": "3.2.1",
"main": "./dist/highcharts-react.min.js",
"types": "./dist/highcharts-react.min.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/highcharts/highcharts-react"
},
"keywords": [
"highcharts",
"highstock",
"highmaps",
"react"
],
"scripts": {
"test": "jest",
"build-demo": "browserify ./demo/demo.jsx -o ./demo/bundle.js -t [ babelify --presets [ @babel/preset-env @babel/preset-react ] ]",
"build": "webpack --config webpack.config.js",
"release": "standard-version"
},
"jest": {
"setupFilesAfterEnv": [
"./tests/setupTests.js"
]
},
"eslintConfig": {
"extends": "react-app"
},
"peerDependencies": {
"highcharts": ">=6.0.0",
"react": ">=16.8.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run test && npm run build"
}
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"babel-loader": "^8.0.6",
"babelify": "^10.0.0",
"browserify": "^14.3.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.18.3",
"highcharts": ">=9.0.0",
"husky": "^2.4.0",
"jest": "^25.1.0",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-test-renderer": "^16.9.0",
"standard": "^10.0.2",
"standard-version": "^8.0.1",
"webpack": "^3.12.0"
}
}