forked from hokaccha/node-jwt-simple
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 772 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
{
"name": "jwt-simple",
"description": "JWT(JSON Web Token) encode and decode module",
"version": "0.5.6",
"author": "Kazuhito Hokamura <[email protected]>",
"repository": {
"type": "git",
"url": "http://github.com/hokaccha/node-jwt-simple.git"
},
"devDependencies": {
"expect.js": "^0.3.1",
"istanbul": "^0.4.2",
"mocha": "^6.0.2"
},
"scripts": {
"test": "istanbul cover _mocha test/*.js"
},
"license": "MIT",
"engines": {
"node": ">= 0.4.0"
},
"files": [
"README.md",
"index.js",
"index.d.ts",
"lib"
],
"keywords": [
"jwt",
"encode",
"decode"
],
"main": "./index",
"types": "./index.d.ts",
"typings": "./index.d.ts",
"dependencies": {
"create-hmac": "^1.1.7"
}
}