forked from ascariandrea/fares-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.75 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
{
"name": "gb-rail-fares",
"version": "1.2.2",
"description": "Library, API and user interface for calculating British rail fares",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"scripts": {
"test": "mocha --compilers ts:ts-node/register,tsx:ts-node/register 'test/**/*.spec.ts'",
"gtest": "mocha --compilers ts:ts-node/register,tsx:ts-node/register 'test/**/*.spec.ts' --grep",
"watch-test": "mocha -w --compilers ts:ts-node/register,tsx:ts-node/register 'test/**/*.spec.ts'",
"start": "ts-node ./src/start.ts",
"data-download": "DATABASE_NAME=fares dtd2mysql --get-fares",
"data-import": "DATABASE_NAME=fares dtd2mysql --fares",
"data-clean": "DATABASE_NAME=fares dtd2mysql --fares-clean",
"prepublishOnly": "tsc -p ./ --outDir dist/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/open-track/fares-engine.git"
},
"keywords": [
"gb",
"rail",
"fares",
"dtd"
],
"author": "Linus Norton",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/open-track/fares-engine/issues"
},
"homepage": "https://github.com/open-track/fares-engine#readme",
"dependencies": {
"bluebird": "^3.5.0",
"js-joda": "^1.5.5",
"koa": "^2.3.0",
"koa-compress": "^2.0.0",
"koa-static": "^4.0.1",
"memoized-class-decorator": "^1.2.0",
"pino": "^4.7.1",
"promise-mysql": "^3.0.2",
"ts-option": "^1.1.4"
},
"engines": {
"node": "^8.0.0"
},
"devDependencies": {
"@types/bluebird": "^3.5.8",
"@types/chai": "^4.0.4",
"@types/mocha": "^2.2.42",
"@types/node": "^8.0.25",
"@types/sinon": "^2.3.3",
"chai": "^4.1.1",
"mocha": "^3.5.0",
"sinon": "^3.2.1",
"ts-node": "^3.1.0",
"typescript": "^2.5.1"
}
}