-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
62 lines (62 loc) · 1.61 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": "connection-scan-algorithm",
"version": "1.1.0",
"description": "Connection Scan Algorithm",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/planarnetwork/connection-scan-algorithm.git"
},
"scripts": {
"test": "npm run lint && mocha --require ts-node/register **/*.spec.ts",
"prepublishOnly": "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",
"patterns": "ts-node ./src/transfer-patterns.ts",
"start": "NODE_OPTIONS=$NODE_DEBUG_OPTION ts-node src/cli.ts",
"perf": "NODE_OPTIONS=$NODE_DEBUG_OPTION ts-node src/performance.ts"
},
"keywords": [
"Journey",
"Planning",
"Public",
"Transport"
],
"author": "Linus Norton <linusnorton@gmail.com>",
"license": "GPL-3.0",
"devDependencies": {
"@types/chai": "^4.2.9",
"@types/lru-cache": "^5.1.0",
"@types/mocha": "^5.2.7",
"@types/node": "^12.12.28",
"@types/progress": "^2.0.3",
"chai": "^4.2.0",
"mocha": "^10.2.0",
"nyc": "^14.1.1",
"ts-node": "^8.6.2",
"tslint": "^5.20.1",
"typescript": "^3.8.2"
},
"dependencies": {
"gtfs-stream": "^2.1.0",
"mysql2": "^2.1.0",
"progress": "^2.0.3",
"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"
]
}
}