-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 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
34
35
36
37
38
39
40
41
42
{
"name": "account-rescue",
"version": "0.3.0",
"description": "Account reset/rescue framework for NodeJS",
"main": "source/index.js",
"scripts": {
"docs": "jsdoc2md 'source/**/*.js' > API.md",
"test": "npm run test:specs",
"test:specs": "nyc mocha -r test/index.js 'test/specs/**/*.spec.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/buttercup/account-rescue.git"
},
"keywords": [
"account",
"reset",
"rescue",
"login",
"backup"
],
"author": "Perry Mitchell <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/buttercup/account-rescue/issues"
},
"homepage": "https://github.com/buttercup/account-rescue#readme",
"dependencies": {
"html-pdf": "^2.2.0",
"iocane": "^4.1.0",
"qrcode": "^1.4.4",
"secure-random-string": "^1.1.3"
},
"devDependencies": {
"chai": "^4.2.0",
"jsdoc-to-markdown": "^6.0.1",
"mocha": "^10.1.0",
"nyc": "^15.1.0",
"pug": "^3.0.0",
"sinon": "^9.0.2"
}
}