-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
66 lines (66 loc) · 1.76 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
{
"name": "aws-secrets",
"version": "0.0.0-development",
"description": "Safely store, version, and use secrets by leveraging AWS Key Managment Store.",
"main": "lib/aws-secrets.js",
"bin": {
"aws-secrets": "./lib/cli.js"
},
"scripts": {
"lint": "eslint . --ignore-pattern dist",
"test": "mocha tests/**/**.js",
"commitmsg": "validate-commit-msg",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/Cimpress-MCP/aws-secrets.git"
},
"keywords": [
"AWS",
"KMS",
"encryption",
"secrets"
],
"author": {
"name": "Dave Purrington",
"email": "[email protected]",
"url": "https://github.com/Cimpress-MCP/aws-secrets.git"
},
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/Cimpress-MCP/aws-secrets/issues"
},
"homepage": "https://github.com/Cimpress-MCP/aws-secrets#readme",
"devDependencies": {
"chai": "^3.5.0",
"cz-conventional-changelog": "^2.0.0",
"eslint": "^4.18.2",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"js-yaml": "^3.13.1",
"mocha": "^6.2.3",
"mock-fs": "^4.8.0",
"nock": "^9.6.1",
"semantic-release": "^17.4.2",
"semantic-release-cli": "^5.2.3",
"simple-mock": "^0.7.3",
"validate-commit-msg": "^2.12.1"
},
"dependencies": {
"aws-sdk": "^2.399.0",
"bluebird": "^3.5.3",
"command-line-args": "^4.0.2",
"command-line-commands": "^2.0.0",
"lodash.clonedeepwith": "^4.5.0",
"lodash.get": "^4.4.2",
"lodash.isstring": "^4.0.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}