-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.59 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
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "njwt",
"version": "1.2.0",
"description": "JWT Library for Node.js",
"engines": {
"node": ">=6.0"
},
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"lint": "eslint .",
"test": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly test/ -- -R spec --no-timeouts",
"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/",
"test-types": "tsd"
},
"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": {
"@types/node": "^15.0.1",
"ecdsa-sig-formatter": "^1.0.5",
"uuid": "^8.3.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"chai": "^4.2.0",
"coveralls": "^3.0.3",
"eslint": "^7.25.0",
"istanbul": "^0.4.5",
"jsonwebtoken": "^8.5.0",
"jwt-simple": "^0.5.5",
"mocha": "^6.0.2",
"secure-random": "^1.1.1",
"tsd": "^0.14.0",
"typescript": "^4.2.4"
},
"tsd": {
"directory": "test/types",
"compilerOptions": {
"strict": true,
"baseUrl": "./",
"paths": {
"njwt": [
"."
]
}
}
}
}