-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.03 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
{
"name": "trip-pin-points-auth",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node lib/index",
"test": "npm run unit-test && npm run lint",
"unit-test": "node node_modules/.bin/istanbul cover node_modules/tape/bin/tape test/**/*.js | tap-junit --output coverage/junit",
"test-no-cov": "node_modules/.bin/tape test/**/*.test.js && npm run lint",
"test-coverage": "node node_modules/.bin/istanbul cover node_modules/tape/bin/tape test/**/*.js",
"lint": "node_modules/.bin/eslint lib/**/*.js test/**/*.js",
"fix-eslint": "node_modules/.bin/eslint lib/** test/** --fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.18.3",
"express": "^4.16.4",
"http-status-codes": "^1.3.0",
"jsonwebtoken": "^8.4.0",
"keypair": "^1.0.1",
"pg-promise": "^8.5.5"
},
"devDependencies": {
"eslint": "^5.14.0",
"istanbul": "^1.1.0-alpha.1",
"sinon": "^7.2.4",
"tap-junit": "^3.0.2",
"tape": "^4.10.1"
}
}