-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
58 lines (58 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
{
"name": "node-kms",
"version": "0.3.2",
"description": "A client implementation of the Key Management Service (KMS) for JavaScript -- for both node.js and browser.",
"main": "lib/index.js",
"scripts": {
"test": "gulp test:nodejs"
},
"repository": {
"type": "git",
"url": "[email protected]:cisco/node-kms.git"
},
"keywords": [
"kms",
"crypto",
"jose"
],
"author": "Cisco Systems, Inc. <https://www.cisco.com>",
"contributors": [
"Matthew A. Miller <[email protected]>",
"Ian W. Remmel <[email protected]>"
],
"license": "Apache-2.0",
"dependencies": {
"es6-promise": "^2.0.1",
"lodash.clone": "^3.0.2",
"lodash.clonedeep": "^3.0.1",
"node-jose": "^2.0.0",
"uuid": "^2.0.1"
},
"devDependencies": {
"chai": "^1.10.0",
"del": "^1.1.1",
"gulp": "^3.8.10",
"gulp-doctoc": "^0.1.2",
"gulp-eslint": "^0.5.0",
"gulp-istanbul": "^0.6.0",
"gulp-mocha": "^2.0.0",
"gulp-rename": "^1.2.0",
"gulp-uglify": "^1.1.0",
"istanbul": "^0.3.5",
"karma": "^1.2.0",
"karma-chrome-launcher": "^0.1.7",
"karma-firefox-launcher": "^0.1.4",
"karma-mocha": "^0.1.10",
"karma-mocha-reporter": "^0.3.1",
"karma-safari-launcher": "^0.1.1",
"karma-sauce-launcher": "^0.2.14",
"karma-webpack": "^1.8.0",
"lodash.merge": "^3.3.1",
"lodash.omit": "^3.1.0",
"mocha": "^2.1.0",
"run-sequence": "^1.0.2",
"webpack": "^1.13.2",
"webpack-stream": "^3.2.0",
"yargs": "^3.18.0"
}
}