-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.5 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
{
"name": "@someimportantcompany/github-actions-aws-s3-env",
"version": "1.0.0",
"description": "Fetch an env-formatted file from AWS S3, and populate your Github Workflow with its contents.",
"private": true,
"scripts": {
"build": "esbuild index.js --outfile=index.dist.js --bundle --minify --platform=node --target=node16",
"lint": "eslint .",
"test": "nyc mocha",
"test:mocha": "mocha",
"preversion": "npm test",
"postversion": "git push && git push --tags"
},
"author": "jdrydn <[email protected]> (https://jdrydn.com)",
"license": "MIT",
"repository": "https://github.com/someimportantcompany/github-actions-aws-s3-env",
"bugs": "https://github.com/someimportantcompany/github-actions-aws-s3-env/issues",
"keywords": [
"github",
"actions",
"aws",
"s3",
"env"
],
"dependencies": {
"@actions/core": "^1.10.0",
"@aws-sdk/client-s3": "^3.278.0",
"dotenv": "^16.0.3"
},
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"@types/mocha": "^10.0.1",
"@types/node": "^18.14.1",
"esbuild": "^0.17.10",
"eslint": "^8.34.0",
"eslint-plugin-mocha": "^10.1.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"rewire": "^6.0.0"
},
"engines": {
"node": ">=16",
"npm": ">=8"
},
"mocha": {
"exit": true,
"reporter": [
"spec"
],
"spec": [
"./*.test.js"
],
"ui": "bdd"
},
"nyc": {
"exclude": [
"*.test.js"
],
"reporter": [
"lcov",
"text"
]
}
}