-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
42 lines (42 loc) · 1015 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
42
{
"name": "ssm-params",
"version": "0.1.0",
"description": "Obtain from AWS SSM Parameter Store",
"author": "Kengo Nakatsuka <kengo.nakatsuka@gmail.com>",
"bugs": {
"url": "https://github.com/nak2k/node-ssm-params/issues"
},
"devDependencies": {
"@types/node": "^14.14.22",
"@types/tape": "^4.13.0",
"aws-sdk": "^2.209.0",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"tape": "^4.9.0",
"typescript": "^4.1.3"
},
"homepage": "https://github.com/nak2k/node-ssm-params",
"keywords": [
"aws",
"ssm"
],
"license": "MIT",
"main": "lib",
"repository": {
"type": "git",
"url": "git+https://github.com/nak2k/node-ssm-params.git"
},
"scripts": {
"build": "tsc",
"clean": "rimraf lib",
"prepublishOnly": "npm test",
"postpublish": "npm-sns",
"repl": "node --inspect repl.js",
"pretest": "run-s clean build",
"test": "ts-node node_modules/tape/bin/tape test/**/*.ts"
},
"files": [
"README.md",
"lib/"
]
}