forked from alt-ctrl-dev/public-transport-verspaetung-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 831 Bytes
/
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
{
"name": "public-transport-verspaetung-api",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/reubenkcoutinho/public-transport-verspaetung-api",
"author": "Coutinho, Reuben K. <[email protected]>",
"license": "MIT",
"private": true,
"engines": {
"node": ">=8"
},
"scripts": {
"lint": "./node_modules/.bin/eslint .",
"mocha": "./node_modules/.bin/mocha test/**/*.test.js",
"test": "yarn lint && yarn mocha",
"start": "node index.js"
},
"dependencies": {
"csvtojson": "^2.0.8",
"fastify": "^2.0.1",
"fastify-cors": "^2.1.2",
"fastify-helmet": "^3.0.0",
"lodash": "^4.17.11",
"fastify-plugin": "^1.5.0",
"boom": "^7.3.0"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.15.1",
"mocha": "^6.0.2"
}
}