-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
64 lines (64 loc) · 1.68 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
63
64
{
"name": "json-web-token",
"version": "3.2.0",
"description": "JSON Web Token (JWT) is a compact token format intended for space constrained environments such as HTTP Authorization headers and URI query parameters.",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"coverage:open": "open coverage/index.html",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"coverage:check": "nyc check-coverage --statements 100 --functions 100 --lines 100 --branches 100",
"test": "standard --fix && nyc --reporter=html --reporter=text mocha",
"bench": "echo 'installing dependencies first ...' && sleep 1 && npm i --save-dev benchmark microtime && echo '' && node bench && npm uninstall --save-dev benchmark microtime"
},
"files": [
"LICENSE",
"README.md",
"index.js",
"index.d.ts"
],
"repository": {
"type": "git",
"url": "git://github.com/joaquimserafim/json-web-token.git"
},
"keywords": [
"jwt",
"json-web-token",
"web",
"http",
"tokens",
"authorization"
],
"author": "@joaquimserafim",
"license": "ISC",
"bugs": {
"url": "https://github.com/joaquimserafim/json-web-token/issues"
},
"homepage": "https://github.com/joaquimserafim/json-web-token",
"dependencies": {
"base64-url": "^2.3.2",
"is.object": "^1.0.0",
"json-parse-safe": "^2.0.0",
"xtend": "^4.0.2"
},
"devDependencies": {
"coveralls": "^3.0.6",
"istanbul": "0.4.5",
"mocha": "^6.2.1",
"nyc": "^14.1.1",
"pre-commit": "^1.2.2",
"standard": "^14.3.1"
},
"nyc": {
"include": [
"index.js"
]
},
"pre-commit": [
"test",
"coverage"
],
"engine": {
"node": ">=8"
}
}