-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
52 lines (52 loc) · 1.34 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
{
"name": "json-web-token",
"version": "1.5.3",
"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": "istanbul cover tape test/test.js",
"jshint": "jshint -c .jshintrc index.js test/*.js",
"code-style": "jscs -p google index.js test/*.js",
"check-coverage": "istanbul check-coverage --statements 100 --functions 100 --lines 100 --branches 100",
"open-coverage": "open coverage/lcov-report/index.html"
},
"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.1"
},
"devDependencies": {
"istanbul": "^0.3.13",
"jscs": "^1.12.0",
"jshint": "^2.7.0",
"pre-commit": "^1.0.6",
"tape": "^4.0.0"
},
"pre-commit": [
"jshint",
"code-style",
"test",
"check-coverage"
]
}