forked from joaquimserafim/json-web-token
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.78 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": "json-web-token",
"version": "2.0.2",
"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",
"scripts": {
"test": "tape test/test.js | tap-spec",
"lint": "jshint -c .jshintrc index.js test/test.js",
"style": "jscs -p google index.js test/test.js",
"coverage": "istanbul cover tape test/test.js && istanbul check-coverage",
"coverage:open": "open reports/coverage/index.html",
"complexity": "plato -r -t 'jenkins-client code report' -l .jshintrc -x 'node_modules|reports|test' -d reports/plato .",
"complexity:open": "open reports/plato/index.html",
"security": "nsp check",
"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"
],
"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": "^1.2.2"
},
"devDependencies": {
"istanbul": "^0.4.3",
"jscs": "^2.11.0",
"jshint": "^2.9.1",
"nsp": "^2.3.0",
"plato": "^1.5.0",
"pre-commit": "^1.1.2",
"tap-spec": "^4.1.1",
"tape": "^4.5.1"
},
"pre-commit": [
"lint",
"style",
"coverage",
"security"
],
"engine": {
"node": ">=4"
}
}