-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.65 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
{
"name": "one-way-api",
"version": "1.0.0",
"description": "API for the One Way journey planner",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "NODE_OPTIONS='--max-old-space-size=4000' ts-node src/index.ts",
"start-js": "NODE_OPTIONS='--max-old-space-size=4000' node dist/src/index.js",
"prepublishOnly": "rm -rf 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/one-way-api.git"
},
"keywords": [
"gtfs",
"journey",
"planner"
],
"author": "Linus Norton <linusnorton@gmail.com>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/planarnetwork/one-way-api/issues"
},
"homepage": "https://github.com/planarnetwork/one-way-api#readme",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/csv-parse": "^1.2.2",
"@types/koa": "^2.0.48",
"@types/koa-compress": "^2.0.9",
"@types/mocha": "^5.2.7",
"@types/node": "^11.13.13",
"@types/pino": "^5.8.8",
"chai": "^4.2.0",
"mocha": "^6.1.4",
"ts-node": "^8.2.0",
"tslint": "^5.17.0",
"typescript": "^3.5.1"
},
"dependencies": {
"@koa/cors": "^3.0.0",
"autobind-decorator": "^2.4.0",
"cheap-ruler": "^2.5.1",
"csv-parse": "^4.4.3",
"gtfsmerge": "^2.1.0",
"koa": "^2.7.0",
"koa-compress": "^3.0.0",
"pino": "^5.12.6",
"pino-pretty": "^2.6.1",
"raptor-journey-planner": "^2.0.6",
"unzipper": "^0.9.15"
}
}