-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1.06 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
{
"name": "@537/auth",
"version": "0.1.3",
"description": "",
"main": "auth.js",
"scripts": {
"test": "NODE_ENV=test npm run lint && npm run cover && npm run check-coverage",
"lint": "./node_modules/.bin/eslint auth.js routes.js util.js lib/ test/",
"cover": "NODE_ENV=test ./node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- --recursive test",
"view-coverage": "open ./coverage/lcov-report/index.html",
"check-coverage": "./node_modules/.bin/istanbul check-coverage --statements 100 --functions 100 --branches 100 --lines 100"
},
"author": "kiernan <[email protected]> (http://537.io/)",
"license": "MIT",
"dependencies": {
"@537/config": "0.0.4",
"aws-sdk": "^2.196.0",
"passport": "^0.4.0",
"passport-google-oauth20": "^1.0.0",
"passport-localapikey-update": "^0.6.0",
"uuid": "^3.2.1"
},
"devDependencies": {
"@537/service": "0.1.1",
"aws-sdk-mock": "^1.7.0",
"chai": "^4.1.2",
"eslint": "^4.17.0",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^5.0.1",
"supertest": "^3.0.0"
}
}