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
90 lines (90 loc) · 2.35 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.35 KB
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
82
83
84
85
86
87
88
89
90
{
"name": "node-jose",
"version": "2.1.1",
"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 <foo@auggie.dev>",
"Matthew A. Miller <linuxwolf@outer-planes.net>",
"Ian W. Remmel <design@ianwremmel.com>",
"Joe Hildebrand <joe-github@cursive.net>",
"Filip Skokan <panva.ip@gmail.com>"
],
"main": "lib/index.js",
"scripts": {
"test": "gulp test:nodejs"
},
"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": "^8.3.2"
},
"devDependencies": {
"bowser": "^2.11.0",
"browserify-istanbul": "^3.0.1",
"chai": "^4.3.4",
"del": "^6.0.0",
"eslint-plugin-mocha-no-only": "^1.1.1",
"fancy-log": "^2.0.0",
"gulp": "^4.0.2",
"gulp-eslint": "^6.0.0",
"gulp-istanbul": "^1.1.3",
"gulp-mocha": "^8.0.0",
"gulp-rename": "^2.0.0",
"gulp-uglify": "^3.0.2",
"is-safari": "^1.0.0",
"istanbul": "^0.4.0",
"jose-cookbook": "git+https://github.com/ietf-jose/cookbook.git",
"json-loader": "^0.5.7",
"karma": "^6.3.13",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.1.0",
"karma-firefox-launcher": "^2.1.2",
"karma-ie-launcher": "^1.0.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-safari-applescript-launcher": "^0.1.1",
"karma-sauce-launcher": "^4.3.6",
"karma-sourcemap-loader": "^0.3.8",
"karma-webpack": "^5.0.0",
"mocha": "^9.2.0",
"run-sequence": "^2.2.1",
"watchify": "^4.0.0",
"webpack": "^5.64.0",
"webpack-stream": "^7.0.0",
"yargs": "^17.3.1"
},
"bugs": {
"url": "https://github.com/cisco/node-jose/issues"
},
"homepage": "https://github.com/cisco/node-jose#readme",
"directories": {
"lib": "lib",
"test": "test"
}
}