forked from rndev15/jsonwebtoken-ed25519-tn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.21 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
{
"name": "jwt-ed25519-tn",
"version": "0.0.3",
"description": "JSON Web Token implementation (symmetric and asymmetric) with TweetNacl lib",
"main": "index.js",
"scripts": {
"test": "nyc --reporter=html --reporter=text mocha && nsp check && cost-of-modules"
},
"repository": {
"type": "git",
"url": "https://github.com/romkaspb/jsonwebtoken-ed25519-tn"
},
"keywords": [
"jwt"
],
"author": "romkaspb",
"license": "MIT",
"bugs": {
"url": "https://github.com/romkaspb/jsonwebtoken-ed25519-tn/issues"
},
"dependencies": {
"jws": "3.1.5",
"lodash.includes": "4.3.0",
"lodash.isboolean": "3.0.3",
"lodash.isinteger": "4.0.4",
"lodash.isnumber": "3.0.3",
"lodash.isplainobject": "4.0.6",
"lodash.isstring": "4.0.1",
"lodash.once": "4.1.1",
"ms": "2.1.1",
"tweetnacl": "^1.0.0"
},
"devDependencies": {
"atob": "^1.1.2",
"chai": "^1.10.0",
"conventional-changelog": "~1.1.0",
"cost-of-modules": "^1.0.1",
"mocha": "^2.1.0",
"nsp": "^2.6.2",
"nyc": "^11.8.0",
"sinon": "^6.0.0"
},
"engines": {
"npm": ">=1.4.28",
"node": ">=0.12"
},
"files": [
"lib",
"decode.js",
"sign.js",
"verify.js"
]
}