-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
43 lines (43 loc) · 1.57 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
{
"name": "transport-network-animator",
"version": "1.0.0",
"description": "",
"main": "dist/network-animator.js",
"directories": {},
"dependencies": {
"delaunator": "^5.0.0",
"fmin": "0.0.2"
},
"devDependencies": {
"@types/chai": "^4.2.22",
"@types/delaunator": "^5.0.0",
"@types/mocha": "^8.2.3",
"@types/node": "^14.17.33",
"chai": "^4.3.4",
"expose-loader": "^1.0.0",
"mocha": "^9.2.0",
"nyc": "^15.1.0",
"ts-loader": "^8.3.0",
"ts-mockito": "^2.6.1",
"ts-node": "^10.4.0",
"typedoc": "^0.22.11",
"typedoc-plugin-markdown": "^3.11.12",
"typedoc-plugin-merge-modules": "^3.1.0",
"typescript": "^4.5.5",
"webpack": "^5.64.0",
"webpack-cli": "^4.9.1",
"webpack-license-plugin": "^4.2.1"
},
"scripts": {
"wp": "webpack",
"wpw": "webpack --watch",
"test": "mocha -r ts-node/register 'test/**/*.spec.ts'",
"coverage": "nyc mocha -r ts-node/register 'test/**/*.spec.ts'",
"screentest": "docker-compose run --rm -u $(id -u ${USER}):$(id -g ${USER}) --entrypoint 'jest --runInBand --detectOpenHandles --forceExit' network-animator-render /app/screentest/_screentest.spec.js",
"docs": "typedoc --plugin typedoc-plugin-markdown --plugin typedoc-plugin-merge-modules --mergeModulesMergeMode project --out docs --readme none --excludePrivate --githubPages false --gitRevision master src/main.ts src/svg/SvgApi.ts",
"build": "npm run wp && npm run test && npm run screentest && npm run docs"
},
"author": "https://github.com/traines-source/",
"license": "GPL-3.0",
"private": true
}