-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.15 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
{
"name": "ssim2gtfs",
"version": "1.0.0",
"description": "SSIM to GTFS conversion tool",
"repository": "https://github.com/open-track/ssim2gtfs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"ssim2gtfs": "bin/ssim2gtfs.sh"
},
"scripts": {
"start": "ts-node src/cli.ts",
"prepublishOnly": "rm -r dist;tsc -p ./ --outDir dist/; cp -r ./resource ./dist/",
"test": "npm run lint && mocha --require ts-node/register 'test/**/*.spec.ts'",
"lint-raw": "tslint --project tsconfig.json",
"lint": "npm run lint-raw -- -t stylish"
},
"keywords": [
"gtfs",
"ssim",
"flight",
"data"
],
"author": "Linus Norton",
"license": "GPL-3.0",
"devDependencies": {
"@types/archiver": "^2.1.2",
"@types/byline": "^4.2.31",
"@types/chai": "^4.1.4",
"@types/csv-parse": "^1.1.11",
"@types/mocha": "^5.2.5",
"@types/node": "^10.10.0",
"chai": "^4.1.2",
"mocha": "^10.2.0",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^3.0.3"
},
"dependencies": {
"archiver": "^3.0.0",
"byline": "^5.0.0",
"csv-parse": "^3.0.0",
"js-joda": "^1.9.1"
}
}