-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.81 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
{
"name": "transfer-pattern-planner",
"version": "1.1.0",
"description": "Transfer Pattern Planning Algorithm",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/planarnetwork/transfer-pattern-planner.git"
},
"scripts": {
"test": "npm run lint && mocha --require ts-node/register **/*.spec.ts",
"prepublishOnly": "npm run generate-barrels && rm -rf ./dist/ && tsc -p ./ --outDir dist/",
"lint-raw": "tslint --project tsconfig.json",
"lint": "npm run lint-raw -- -t stylish",
"coverage": "nyc --reporter=text npm test",
"report-coverage": "npm run coverage && nyc report --reporter=text-lcov > coverage.lcov && codecov",
"start": "NODE_OPTIONS=$NODE_DEBUG_OPTION ts-node src/cli.ts",
"perf": "NODE_OPTIONS=--max-old-space-size=4000 ts-node src/performance.ts",
"generate-barrels": "barrelsby --delete -d src/ -e .spec.ts -e cli.ts"
},
"keywords": [
"Journey",
"Planning",
"Public",
"Transport"
],
"author": "Linus Norton <[email protected]>",
"license": "GPL-3.0",
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^5.2.7",
"@types/mysql": "^2.15.13",
"@types/node": "^12.12.42",
"barrelsby": "^2.2.0",
"chai": "^4.2.0",
"codecov": "^3.7.0",
"mocha": "^10.2.0",
"nyc": "^14.1.1",
"ts-node": "^8.10.1",
"tslint": "^5.20.1",
"typescript": "^3.9.3"
},
"dependencies": {
"gtfs-stream": "^2.1.0",
"memoized-class-decorator": "^1.5.0",
"mysql2": "^1.7.0",
"ts-array-utils": "^0.5.0"
},
"nyc": {
"extends": "@istanbul/nyc-config-typescript",
"all": true,
"check-coverage": true,
"extension": [
".ts"
],
"include": [
"src/**/*.ts"
],
"exclude": [
"src/*.ts"
]
}
}