-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
42 lines (42 loc) · 902 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
39
40
41
42
{
"name": "jwtgen",
"version": "2.2.0",
"description": "JWT key generator",
"keywords": [
"JWT",
"generator",
"JSON",
"token",
"web"
],
"repository": {
"type": "git",
"url": "https://github.com/vandium-io/jwtgen.git"
},
"engines": {
"node": ">=4.3.2"
},
"main": "./bin/index.js",
"scripts": {
"test": "./node_modules/.bin/mocha --recursive",
"coverage": "./node_modules/.bin/istanbul cover node_modules/mocha/bin/_mocha -- -R spec --recursive"
},
"bin": {
"jwtgen": "./bin/jwtgen.js"
},
"author": "vandium software",
"license": "BSD-3-Clause",
"dependencies": {
"jwt-builder": "^1.1.0",
"lodash": "^4.6.1",
"yargs": "^8.0.2"
},
"devDependencies": {
"app-root-path": "^2.0.1",
"chai": "^4.0.2",
"istanbul": "^0.4.3",
"mocha": "^3.2.0",
"proxyquire": "^1.7.10",
"sinon": "^2.3.4"
}
}