-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
56 lines (56 loc) · 1.1 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
{
"name": "kms-cli",
"version": "0.0.10",
"description": "AWS KMS client for encrypting and decrypting secrets",
"main": "index.js",
"scripts": {
"start": " node index.js",
"test": "npm test"
},
"preferGlobal": true,
"bin": {
"kms-cli": "cli.js"
},
"files": [
"index.js",
"cli.js",
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ddffx/kms-cli.git"
},
"keywords": [
"aws",
"kms",
"secrets"
],
"author": "Deb Das",
"license": "MIT",
"bugs": {
"url": "https://github.com/ddffx/kms-cli/issues"
},
"homepage": "https://github.com/ddffx/kms-cli#readme",
"dependencies": {
"async": "^2.1.4",
"aws-sdk": "^2.1.26",
"chalk": "^1.0.0",
"commander": "^2.8.1",
"lodash": "^4.17.2",
"meow": "^3.1.0",
"q": "^1.3.0",
"debug-log": "^1.0.0"
},
"devDependencies": {
"chai": "^3.5.0",
"gulp": "^3.8.11",
"gulp-jscs": "^4.0.0",
"gulp-jshint": "^2.0.4",
"gulp-mocha": "^3.0.1",
"gulp-util": "^3.0.4",
"mocha": "^3.2.0"
},
"engines": {
"node": ">=0.10.0"
}
}