-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 820 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 820 Bytes
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
{
"name": "@opentorc/config-wrapper",
"version": "1.3.2",
"description": "config management wrapper",
"main": "./src/index.js",
"bin": {
"@opentorc/config-wrapper": "bin/config-wrapper",
"config-wrapper": "bin/config-wrapper"
},
"scripts": {
"test": "npx mocha ./tests/*.js --timeout 60000"
},
"author": "cwd <cwd@lazybaer.com>",
"license": "ISC",
"dependencies": {
"arg": "^5.0.1",
"chalk": "^4.1.2",
"inquirer": "^8.2.0",
"line-reader": "^0.4.0"
},
"devDependencies": {
"chai": "^4.3.4",
"mocha": "^9.1.3",
"standard": "^17.1.0"
},
"engineStrict": true,
"engines": {
"node": ">=v16.3.0"
},
"publishConfig": {
"@opentorc:registry": "https://npm.pkg.github.com"
},
"peerDependencies": {
"@aws-sdk/client-ssm": "^3.552.0"
}
}