-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.36 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
{
"name": "aws-params-action",
"version": "0.0.1",
"description": "An action which retrieves parameters from AWS Systems Manager Parameter Store",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"start": "ts-node src/index.ts",
"test": "mocha --config test/support/unit.yaml",
"coverage": "nyc npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shaunegan/aws-params-action"
},
"keywords": [
"aws",
"ssm",
"github",
"action"
],
"author": "Shaun Egan",
"license": "ISC",
"bugs": {
"url": "https://github.com/shaunegan/aws-params-action"
},
"homepage": "https://github.com/shaunegan/aws-params-action#readme",
"nyc": {
"reporter": [
"lcov"
]
},
"dependencies": {
"@actions/core": "1.6.0",
"@actions/github": "5.0.0",
"aws-sdk": "2.1044.0"
},
"devDependencies": {
"@types/chai": "4.2.22",
"@types/chai-as-promised": "7.1.4",
"@types/mocha": "9.0.0",
"@types/node": "16.11.12",
"@types/sinon": "10.0.6",
"@types/sinon-chai": "3.2.6",
"chai": "4.3.4",
"chai-as-promised": "7.1.1",
"mocha": "9.1.3",
"nyc": "15.1.0",
"sinon": "12.0.1",
"sinon-chai": "3.7.0",
"ts-node": "10.4.0",
"tslint": "5.20.1",
"tslint-config-standard": "9.0.0",
"typescript": "3.9.10"
}
}