forked from jwtk/njwt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.18 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.18 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
{
"name": "njwt",
"version": "1.0.0",
"description": "JWT Library for Node.js",
"main": "index.js",
"scripts": {
"test": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly test/ -- -R spec --no-timeouts; cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js; rm -rf ./coverage",
"test-watch": "mocha --timeout=5000 --reporter dot --check-leaks -w ./*.js test/ ",
"test-debug": "mocha --timeout=5000 --debug --reporter dot --check-leaks -w ./*.js test/ ",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --timeout=5000 --reporter dot --check-leaks test/"
},
"repository": {
"type": "git",
"url": "https://github.com/jwtk/njwt"
},
"keywords": [
"jwt"
],
"author": "Stormpath, Inc.",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/jwtk/njwt/issues"
},
"homepage": "https://github.com/jwtk/njwt",
"dependencies": {
"ecdsa-sig-formatter": "^1.0.5",
"uuid": "^3.3.2"
},
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.3",
"istanbul": "^0.4.5",
"jsonwebtoken": "^8.5.0",
"jwt-simple": "^0.5.5",
"mocha": "^6.0.2",
"secure-random": "^1.1.1"
}
}