-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
48 lines (48 loc) · 1.14 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
{
"name": "passport-zero",
"version": "1.0.0",
"description": "zero password strategy for passport",
"scripts": {
"coverage": "codecov",
"dev": "jest --watch",
"precommit": "lint-staged",
"test": "jest"
},
"lint-staged": {
"*.{js,json}": ["prettier --single-quote --write", "git add"]
},
"license": "MIT",
"files": ["index.js", "lib", "Licence"],
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/nickbalestra/zero.git"
},
"author": {
"name": "Nick Balestra",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/nickbalestra/zero/issues"
},
"homepage": "https://github.com/nickbalestra/zero#readme",
"dependencies": {
"emailjs": "^1.0.12",
"jsonwebtoken": "^8.1.0",
"util-promisifyall": "^1.0.3"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-passport-strategy": "^1.0.1",
"codecov": "^3.0.0",
"husky": "^0.14.3",
"jest": "^22.0.3",
"lint-staged": "^6.0.0",
"prettier": "^1.8.2"
},
"jest": {
"clearMocks": true,
"coverageDirectory": "./coverage/",
"collectCoverage": true
}
}