-
Notifications
You must be signed in to change notification settings - Fork 255
/
package.json
50 lines (50 loc) · 1.47 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
49
50
{
"name": "learn-json-web-tokens",
"version": "1.0.6",
"description": "A JSON Web Tokens Tutorial to secure your node.js apps!",
"main": "server.js",
"scripts": {
"functional": "istanbul cover ./node_modules/tape/bin/tape ./example/test/functional.js | tap-spec",
"coverage": "istanbul cover ./node_modules/tape/bin/tape ./example/test/functional.js && istanbul check-coverage --statements 100 --functions 100 --lines 100 --branches 100",
"spec": "tape ./example/test/integration.js | tap-spec",
"test": "istanbul cover ./node_modules/tape/bin/tape ./example/test/functional.js",
"start": "node ./example/server.js",
"jshint": "jshint -c .jshintrc --exclude-path .gitignore ."
},
"repository": {
"type": "git",
"url": "https://github.com/dwyl/learn-json-web-tokens.git"
},
"keywords": [
"JSON",
"Web",
"Tokens",
"JWT",
"Security"
],
"author": "@nelsonic <[email protected]> (https://github.com/nelsonic)",
"license": "ISC",
"bugs": {
"url": "https://github.com/dwyl/learn-json-web-tokens/issues"
},
"homepage": "https://github.com/dwyl/learn-json-web-tokens",
"dependencies": {
"jsonwebtoken": "^8.5.1",
"level": "^5.0.1"
},
"devDependencies": {
"istanbul": "^0.4.3",
"jshint": "^2.8.0",
"pre-commit": "^1.0.10",
"request": "^2.60.0",
"tap-spec": "^5.0.0",
"tape": "^4.0.1"
},
"engines": {
"node": ">= 6"
},
"pre-commit": [
"jshint",
"coverage"
]
}