forked from DavidTanner/nodecredstash
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.51 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": "aws-credstash",
"version": "3.0.1",
"description": "Node.js credstash using AWS DynamoDB and KMS. Fork of nodecredstash",
"main": "index.js",
"engines": {
"node": ">=10.0.0"
},
"files": [
"lib",
"index.js"
],
"types": "index.d.ts",
"devDependencies": {
"aws-sdk-mock": "^5.1.0",
"c8": "^8.0.0",
"chai": "^4.3.4",
"chai-string": "^1.5.0",
"eslint": "^7.25.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^4.0.0",
"lodash": "^4.17.21",
"mocha": "^9.0.1",
"prettier": "^2.2.1"
},
"dependencies": {
"aes-js": "^3.1.2",
"debug": "^4.3.1"
},
"peerDependencies": {
"aws-sdk": "^2.171.0"
},
"scripts": {
"test": "npm run lint && c8 --reporter=text mocha",
"watch": "mocha -w",
"lint": "eslint --ignore-path .gitignore . && prettier --config .prettierrc.json --ignore-path .gitignore --check \"**/*.{js,json,ts,md}\"",
"fix": "eslint --ignore-path .gitignore --fix . && prettier --config .prettierrc.json --ignore-path .gitignore --write \"**/*.{js,json,ts,md}\""
},
"repository": {
"type": "git",
"url": "https://github.com/tongrhj/aws-credstash.git"
},
"keywords": [
"credstash",
"dynamodb",
"kms",
"aws",
"node.js",
"secrets",
"credentials"
],
"author": "Jared Tong <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tongrhj/aws-credstash/issues"
},
"homepage": "https://github.com/tongrhj/aws-credstash"
}