-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.32 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
{
"name": "eurostar2gtfs",
"version": "1.0.4",
"description": "Create a GTFS dataset from the Eurostar timetable",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"eurostar2gtfs": "bin/eurostar2gtfs.sh"
},
"scripts": {
"start": "ts-node src/cli.ts",
"prepublishOnly": "rm -r dist;tsc -p ./ --outDir 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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/planarnetwork/eurostar2gtfs.git"
},
"keywords": [
"gtfs",
"transit",
"data"
],
"author": "Linus Norton <linusnorton@gmail.com>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/planarnetwork/eurostar2gtfs/issues"
},
"homepage": "https://github.com/planarnetwork/eurostar2gtfs#readme",
"devDependencies": {
"@types/adm-zip": "^0.4.32",
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.7",
"@types/node": "^11.13.13",
"chai": "^4.2.0",
"mocha": "^10.2.0",
"ts-node": "^8.2.0",
"tslint": "^5.17.0",
"typescript": "^3.5.1"
},
"dependencies": {
"@js-joda/locale_en": "^2.0.1",
"adm-zip": "^0.4.13",
"js-joda": "^1.10.1",
"js-joda-timezone": "^2.0.2"
}
}