-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.19 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
{
"name": "mtastate",
"version": "0.6.0",
"description": "an API to return information about trains in the greater NYC area",
"repository": {
"type": "git",
"url": "https://github.com/wh-iterabb-it/mtastate"
},
"bugs": {
"url": "https://github.com/wh-iterabb-it/mtastate/issues"
},
"homepage": "https://github.com/wh-iterabb-it/mtastate#readme",
"license": "GPL-3.0",
"scripts": {
"test:coverage": "nyc npm test && nyc report --reporter=text-lcov > coverage.lcov && ./node_modules/.bin/codecov",
"start": "node ./src/app.js",
"test": "node_modules/.bin/mocha tests/. --recursive",
"test:lint": "eslint .",
"test:lint:fix": "eslint . --fix --ignore-pattern polyfills"
},
"dependencies": {
"chai-http": "4.4.0",
"express": "4.19.2",
"helmet": "7.1.0",
"mta-gtfs": "1.1.0",
"sst": "git+https://github.com/wh-iterabb-it/sst.git",
"striptags": "3.2.0"
},
"devDependencies": {
"chai": "4.3.10",
"codecov": "3.8.3",
"eslint": "8.50.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "4.2.1",
"mocha": "10.2.0",
"prettier": "2.8.8",
"nyc": "15.1.0"
}
}