-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 2.03 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
{
"private": true,
"version": "0.0.1-dev",
"name": "@highcharts/morningstar-connectors",
"license": "UNLICENSED",
"description": "Highcharts Dashboards connectors for Morningstar Direct Web Services",
"author": "Highsoft AS",
"bugs": "https://github.com/highcharts/morningstar-connectors/issues",
"homepage": "https://github.com/highcharts/morningstar-connectors#readme",
"repository": "https://github.com/highcharts/morningstar-connectors.git",
"main": "code/es-modules/index.js",
"types": "code/es-modules/index.d.ts",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.17.0",
"eslint": "^8.56.0",
"eslint-plugin-brackets": "^0.1.3",
"eslint-plugin-jsdoc": "^48.8.3",
"husky": "^9.1.2",
"lint-staged": "^15.2.7",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4"
},
"lint-staged": {
"*.ts": [
"eslint"
]
},
"peerDependencies": {
"@highcharts/dashboards": "^2.2.0"
},
"scripts": {
"build": "npm run webpack && npm run build:prepare && npm run build:pack && npm run build:cleanup",
"build:prepare": "mkdir -p build/package/ && cp -R code/* LICENSE.md README.md build/package/ && cp package-build.json build/package/package.json",
"build:pack": "npm pack build/package/ --pack-destination build/",
"build:cleanup": "rm -rf build/package/",
"demos": "npm run webpack && npm run demos:server",
"demos:server": "(sleep 1 ; open http://localhost:8080) & python3 -m http.server --bind localhost 8080",
"prepare": "rm -rf '.husky/_' ; husky",
"scripts": "tsc -p src/",
"test": "npm run test:prepare",
"test:morningstar": "npx -y newman run --bail tmp/Collection.json -e tmp/Environment.json",
"test:precommit": "npm run test",
"test:prepare": "npm run webpack",
"watch": "tsc -p src/ -w",
"webpack": "npm run scripts && webpack"
}
}