-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
52 lines (52 loc) · 1.39 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
{
"name": "gtfsmerge",
"version": "2.1.1",
"description": "Merge GTFS data sets",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"gtfsmerge": "bin/gtfsmerge.sh"
},
"scripts": {
"start": "NODE_OPTIONS='--max-old-space-size=8000' ts-node src/index.ts",
"prepublishOnly": "rm -r dist;tsc -p ./ --outDir dist/",
"test": "npm run lint && mocha --require ts-node/register 'src/**/*.spec.ts'",
"lint-raw": "tslint --project tsconfig.json",
"lint": "npm run lint-raw -- -t stylish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/planarnetwork/gtfsmerge.git"
},
"keywords": [
"gtfs",
"transit",
"data"
],
"author": "Linus Norton <[email protected]>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/planarnetwork/gtfsmerge/issues"
},
"homepage": "https://github.com/planarnetwork/gtfsmerge#readme",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/chai-spies": "^1.0.0",
"@types/mocha": "^5.2.7",
"@types/node": "^11.13.13",
"@types/rimraf": "^2.0.2",
"@types/yargs": "^12.0.12",
"chai": "^4.2.0",
"chai-spies": "^1.0.0",
"mocha": "^10.2.0",
"ts-node": "^8.2.0",
"tslint": "^5.17.0",
"typescript": "^3.5.1"
},
"dependencies": {
"cheap-ruler": "^2.5.1",
"gtfs-stream": "^2.0.8",
"rimraf": "^2.6.3",
"yargs": "^13.2.4"
}
}