-
Notifications
You must be signed in to change notification settings - Fork 125
/
package.json
62 lines (62 loc) · 1.5 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
54
55
56
57
58
59
60
61
62
{
"name": "node-jose",
"version": "2.2.0",
"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"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cisco/node-jose.git"
},
"license": "Apache-2.0",
"author": "Cisco Systems, Inc. <https://www.cisco.com>",
"contributors": [
"Stephen Augustus <[email protected]>",
"Matthew A. Miller <[email protected]>",
"Ian W. Remmel <[email protected]>",
"Joe Hildebrand <[email protected]>",
"Filip Skokan <[email protected]>"
],
"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",
"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"
},
"bugs": {
"url": "https://github.com/cisco/node-jose/issues"
},
"homepage": "https://github.com/cisco/node-jose#readme",
"directories": {
"lib": "lib",
"test": "test"
}
}