-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.01 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
{
"name": "@dot/config",
"version": "2.0.1",
"publishConfig": {
"access": "public"
},
"description": "A configuration contract for Node + AWS projects",
"license": "MPL-2.0",
"repository": "shellscape/dot",
"author": "shellscape",
"homepage": "https://github.com/shellscape/dot",
"bugs": "https://github.com/shellscape/dot/issues",
"main": "dist/index.js",
"engines": {
"node": ">=18"
},
"scripts": {
"build": "pnpm -w package:build $PWD",
"prepare": "if [ ! -d 'dist' ]; then pnpm build; fi",
"prepublishOnly": "pnpm build",
"prerelease": "pnpm build",
"pretest": "pnpm build",
"release": "pnpm --workspace-root package:release $(pwd)",
"test": "FORCE_COLOR=2 ava"
},
"files": [
"dist",
"README.md"
],
"dependencies": {
"@aws-sdk/client-secrets-manager": "^3.342.0",
"@aws-sdk/client-ssm": "^3.342.0",
"@dot/log": "workspace:^",
"chalk": "^4.1.2",
"mem": "^8.1.1"
},
"devDependencies": {
"aws-sdk-client-mock": "^2.1.1"
}
}