-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.17 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.17 KB
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
49
50
51
52
53
54
55
{
"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": "nick@balestra.ch"
},
"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": "23.0.0",
"lint-staged": "^6.0.0",
"prettier": "^1.8.2"
},
"jest": {
"clearMocks": true,
"coverageDirectory": "./coverage/",
"collectCoverage": true
}
}