-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 964 Bytes
/
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
{
"name": "jsecrets",
"description": "jsecrets is a wrapper around AWS Secrets Manager for your JavaScript projects.",
"version": "1.0.0",
"main": "jsecrets.js",
"repository": {
"type": "git",
"url": "git+https://github.com/pixielabs/jsecrets.git"
},
"keywords": [
"aws secrets manager",
"express"
],
"author": "Pixie Labs",
"license": "MIT",
"files": ["jsecrets.js"],
"bugs": {
"url": "https://github.com/pixielabs/jsecrets/issues"
},
"homepage": "https://github.com/pixielabs/jsecrets#readme",
"scripts": {
"test": "jest",
"exampleAppStart": "pushd ./spec/exampleApp; npm run start;",
"exampleAppTest": "pushd ./spec/exampleApp; npm run test;"
},
"jest": {
"collectCoverage": true,
"coverageReporters": [
"html"
],
"testPathIgnorePatterns": [
"/cypress/"
]
},
"devDependencies": {
"jest": "^24.9.0"
},
"dependencies": {
"aws-sdk": "^2.541.0"
}
}