forked from highcharts/highcharts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
123 lines (123 loc) · 3.68 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "highcharts",
"version": "8.1.2",
"description": "JavaScript charting framework",
"main": "lib/highcharts",
"module": "es-modules/masters/highcharts.src.js",
"author": "Highsoft AS <[email protected]> (http://www.highcharts.com/about)",
"repository": {
"type": "git",
"url": "https://github.com/highcharts/highcharts.git"
},
"bugs": "https://github.com/highcharts/highcharts/issues",
"homepage": "http://www.highcharts.com",
"keywords": [
"charts",
"graphs",
"visualization",
"data",
"browserify",
"webpack"
],
"files": [
"errors",
"gfx",
"js",
"lib"
],
"scripts": {
"test": "npx gulp test --force --speak",
"testall": "npx gulp test --browsers all --force --speak",
"prebuild": "rimraf build/*.zip build/dist/ code/",
"build": "npx gulp dist",
"jsdoc": "npx gulp jsdoc-watch --skip-websearch",
"dts": "npx gulp dts && npx gulp dtslint",
"ts-compile:test": "npx tsc -p test && npx tsc -p samples",
"gulp": "npx gulp",
"utils": "highcharts-utils"
},
"husky": {
"hooks": {
"commit-msg": "node tools/validate-commit-msg.js ${HUSKY_GIT_PARAMS}",
"pre-commit": "npx lint-staged && npx gulp lint-ts && npx gulp scripts && npx gulp test"
}
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@octokit/rest": "^17.9.0",
"@types/jquery": "^3.3.38",
"@types/qunit": "^2.9.1",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"aws-sdk": "^2.675.0",
"browserify": "^16.5.1",
"colors": "^1.4.0",
"cross-env": "^7.0.2",
"dtslint": "^3.5.2",
"eslint": "^7.0.0",
"eslint-config-eslint": "5.0.1",
"eslint-plugin-highcharts": "github:highcharts/eslint-plugin-highcharts",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-security": "^1.4.0",
"fs-extra": "^9.0.0",
"gifencoder": "^2.0.1",
"glob": "^7.1.6",
"google-closure-compiler": "^20200504.0.0",
"gulp": "^4.0.2",
"gulp-jsdoc3": "^3.0.0",
"gulp-zip": "^5.0.1",
"gzip-size": "^5.1.1",
"highcharts-assembler": "github:highcharts/highcharts-assembler#v1.3.5",
"highcharts-declarations-generator": "github:highcharts/highcharts-declarations-generator#v1.1.17",
"highcharts-documentation-generators": "github:highcharts/highcharts-documentation-generators#v0.5.10",
"highcharts-utils": "github:highcharts/highcharts-utils",
"highsoft-websearch": "github:highcharts/highsoft-websearch#v0.0.3",
"husky": "^4.2.5",
"js-yaml": "^3.13.1",
"karma": "4.3.0",
"karma-browserstack-launcher": "1.4.0",
"karma-chrome-launcher": "^3.1.0",
"karma-edge-launcher": "^0.4.2",
"karma-firefox-launcher": "^1.3.0",
"karma-generic-preprocessor": "^1.1.1",
"karma-ie-launcher": "^1.0.0",
"karma-qunit": "^4.1.1",
"karma-safari-launcher": "^1.0.0",
"karma-sharding": "^4.4.0",
"lint-staged": "^10.2.2",
"log-update": "^4.0.0",
"lolex": "^6.0.0",
"marked": "^1.0.0",
"mkdirp": "^1.0.4",
"node-sass": "^4.14.1",
"pixelmatch": "^5.2.0",
"plugin-error": "^1.0.1",
"pngjs": "^5.0.0",
"pretty": "^2.0.0",
"qunit": "^2.10.0",
"replace-string": "^3.1.0",
"request": "^2.88.2",
"rimraf": "^3.0.2",
"semver": "^7.3.2",
"tsutils": "^3.17.1",
"typescript": "~3.9.3",
"undertaker-forward-reference": "^1.0.2",
"webpack": "^4.43.0",
"yargs": "^15.3.1"
},
"engines": {
"node": ">=10.6.0"
},
"lint-staged": {
"*.js": [
"eslint",
"git add"
]
},
"license": "SEE LICENSE IN <license.txt>",
"dependencies": {
"jspdf-yworks": "^2.0.1",
"svg2pdf.js": "^1.3.3"
}
}