forked from Cimpress-MCP/aws-secrets
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.55 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.55 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
{
"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",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/Cimpress-MCP/aws-secrets.git"
},
"keywords": [
"AWS",
"KMS",
"encryption",
"secrets"
],
"author": {
"name": "Dave Purrington",
"email": "dave.purrington@gmail.com",
"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",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"js-yaml": "^3.9.1",
"mocha": "^3.2.0",
"mock-fs": "^4.2.0",
"nock": "^9.0.11",
"semantic-release": "^6.3.2",
"semantic-release-cli": "^3.0.3",
"simple-mock": "^0.7.3",
"validate-commit-msg": "^2.12.1"
},
"dependencies": {
"aws-sdk": "^2.39.0",
"bluebird": "^3.5.0",
"command-line-args": "^4.0.2",
"command-line-commands": "^2.0.0",
"lodash": "^4.17.4"
}
}