forked from cisco/node-jose
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1020 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 1020 Bytes
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
{
"name": "node-jose-crypto-browserify",
"version": "2.2.3",
"description": "A JavaScript implementation of the JSON Object Signing and Encryption (JOSE) for current web browsers and node.js-based servers",
"keywords": [
"crypto",
"jose",
"jwa",
"jwe",
"jwk",
"jws"
],
"main": "lib/index.js",
"scripts": {
"test": "mocha './test/**/*-test.js'"
},
"browser": {
"crypto": false
},
"react-native": {
"crypto": false
},
"dependencies": {
"base64url": "^3.0.1",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"es6-promise": "^4.2.8",
"lodash": "^4.17.21",
"long": "^5.2.0",
"node-forge": "^1.2.1",
"pako": "^2.0.4",
"process": "^0.11.10",
"uuid": "^9.0.0"
},
"devDependencies": {
"bowser": "^2.11.0",
"chai": "^4.3.7",
"is-safari": "^1.0.0",
"jose-cookbook": "git+https://github.com/ietf-jose/cookbook.git",
"mocha": "^10.1.0"
},
"directories": {
"lib": "lib",
"test": "test"
}
}