-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (37 loc) · 957 Bytes
/
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
{
"name": "uberether-jwt",
"version": "0.2.0",
"description": "Class for generating, parsing, and validating JWT tokens",
"main": "lib",
"repository": {
"type": "git",
"url": "https://github.com/UberEther/jwt.git"
},
"author": {
"name": "Michael Samblanet",
"email": "[email protected]",
"url": "http://github.com/msamblanet/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/UberEther/jwt/issues"
},
"homepage": "https://github.com/UberEther/jwt",
"scripts": {
"test": "mocha",
"test-cov": "istanbul cover --config test/istanbul.yml node_modules/mocha/bin/_mocha"
},
"dependencies": {
"bluebird": "^3.0.0",
"coffee-script": "^1.9.2",
"uberether-jwk": "^0.4.0",
"uberether-object-validator": "^0.1.0"
},
"devDependencies": {
"mocha": "^2.3.0",
"chai": "^3.2.0",
"rewire": "^2.3.4",
"istanbul": "^0.4.0",
"coffee-coverage": "^0.6.3"
}
}