forked from cisco/node-jose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.12 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "node-jose",
"version": "2.0.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": "https://github.com/cisco/node-jose.git"
},
"license": "Apache-2.0",
"author": "Cisco Systems, Inc. <https://www.cisco.com>",
"contributors": [
"Matthew A. Miller <[email protected]>",
"Ian W. Remmel <[email protected]>",
"Joe Hildebrand <[email protected]>",
"Filip Skokan <[email protected]>"
],
"main": "lib/index.js",
"scripts": {
"test": "gulp test:nodejs"
},
"browser": {
"crypto": false
},
"react-native": {
"crypto": false
},
"dependencies": {
"base64url": "^3.0.1",
"buffer": "^5.5.0",
"es6-promise": "^4.2.8",
"lodash": "^4.17.15",
"long": "^4.0.0",
"node-forge": "^0.10.0",
"pako": "^1.0.11",
"process": "^0.11.10",
"uuid": "^3.3.3"
},
"devDependencies": {
"bowser": "^1.9.3",
"browserify-istanbul": "^3.0.0",
"chai": "^4.0.1",
"del": "^3.0.0",
"eslint-plugin-mocha-no-only": "0.0.6",
"gulp": "^4.0.2",
"gulp-eslint": "^4.0.1",
"gulp-istanbul": "^1.1.1",
"gulp-mocha": "^5.0.0",
"gulp-rename": "^1.2.0",
"gulp-uglify": "^3.0.2",
"gulp-util": "^3.0.7",
"is-safari": "^1.0.0",
"istanbul": "^0.4.0",
"jose-cookbook": "git+https://github.com/ietf-jose/cookbook.git",
"json-loader": "^0.5.4",
"karma": "^5.2.2",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-firefox-launcher": "^1.2.0",
"karma-ie-launcher": "^1.0.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.0.0",
"karma-safari-applescript-launcher": "^0.1.0",
"karma-sauce-launcher": "^1.1.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^3.0.0",
"mocha": "^8.1.3",
"run-sequence": "^2.0.0",
"watchify": "^3.11.1",
"webpack": "^4.39.3",
"webpack-stream": "^6.1.0",
"yargs": "^16.0.3"
}
}