-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
62 lines (62 loc) · 2.01 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
{
"name": "github.highcharts.com",
"version": "1.11.2",
"description": "Node.js server which runs a RESTful application to serve Highcharts scripts built from the Highcharts build script.",
"main": "server.js",
"dependencies": {
"@highcharts/highcharts-assembler": "github:highcharts/highcharts-assembler#v1.5.6",
"@types/jquery": "^3.3.31",
"@types/trusted-types": "^2.0.7",
"cors": "^2.8.5",
"directory-tree": "^3.3.0",
"express": "^4.17.3",
"express-rate-limit": "^5.1.3",
"express-slow-down": "^1.3.1",
"sass": "^1.57.1",
"tiged": "^2.12.4",
"typescript": "~5.4.5",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4"
},
"devDependencies": {
"@types/node": "^20.4.6",
"archiver": "^1.3.0",
"chai": "^4.1.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-promise": "^6.1.1",
"husky": "^0.14.3",
"ky-universal": "^0.10.1",
"mocha": "^10.2.0",
"nyc": "^14.1.1",
"rimraf": "^3.0.0",
"sinon": "^4.0.1",
"standard": "^17.1.0"
},
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"coverage": "nyc npm run unit-tests",
"lint": "standard --fix \"app/*.js\" \"scripts/*.js\" \"test/*.js\"",
"build": "node ./scripts/deploy.js",
"tsc": "npx tsc -P ./src/tsconfig.json && npm run lint",
"precommit": "npm test",
"pretest": "npm run tsc && rimraf tmp/",
"test": "npm run test-lint && npm run unit-tests",
"test-lint": "standard \"app/*.js\" \"scripts/*.js\" \"test/*.js\"",
"unit-tests": "mocha test/test.js",
"artillery-test": "npx artillery run -o /tmp/artillery-report ./test/artillery-load-test.yml"
},
"repository": {
"type": "git",
"url": "git+https://github.com/highcharts/github.highcharts.com.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/highcharts/github.highcharts.com/issues"
},
"homepage": "https://github.com/highcharts/github.highcharts.com#readme"
}