-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
62 lines (62 loc) · 1.63 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
{
"name": "oprah",
"version": "5.6.0",
"description": "Package to deploy parameters to AWS",
"repository": "https://github.com/ACloudGuru/oprah.git",
"author": "subash adhikari <[email protected]>",
"engines": {
"node": ">=12.14.0"
},
"contributors": [
"DevOps Team <[email protected]>",
"Jaepil Kim <[email protected]>",
"Patrick Shiel <[email protected]>"
],
"license": "MIT",
"bin": {
"oprah": "./bin/oprah"
},
"scripts": {
"lint": "yarn eslint .",
"test": "yarn jest --coverage",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"keywords": [
"amazon-web-services",
"aws-parameter-store",
"configuration-management",
"aws"
],
"bugs": {
"url": "https://github.com/ACloudGuru/oprah/issues"
},
"homepage": "https://github.com/ACloudGuru/oprah",
"dependencies": {
"aws-sdk": "^2.1407.0",
"chalk": "^4.1.0",
"commander": "^7.1.0",
"dataloader": "^2.0.0",
"deep-map": "^2.0.0",
"es6-weak-map": "^2.0.3",
"js-yaml": "^4.0.0",
"lodash": "^4.17.21",
"prompt": "^1.1.0",
"root-path": "^0.2.1"
},
"devDependencies": {
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"eslint": "^7.21.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.2.1",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^6.0.0",
"jest": "^26.6.3",
"pinst": "^2.1.6",
"prettier": "^1.18.2"
}
}