-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.75 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.75 KB
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": "@openaddresses/deploy",
"type": "module",
"version": "10.0.1",
"main": "dist/cli.js",
"types": "dist/cli.d.ts",
"author": "ingalls <nick@ingalls.ca>",
"license": "MIT",
"scripts": {
"build": "tsc -p tsconfig.json && cp -r data dist/ && cp package.json dist/",
"postbuild": "chmod +x dist/cli.js",
"typecheck": "tsc --noEmit -p tsconfig.json",
"lint": "eslint cli.ts lib/ test/",
"test": "vitest run",
"doc": "typedoc --entryPoints cli.ts --out docs",
"prepack": "npm run build"
},
"bin": {
"deploy": "dist/cli.js"
},
"engines": {
"node": "> 21"
},
"repository": {
"type": "git",
"url": "git+https://github.com/openaddresses/deploy.git"
},
"dependencies": {
"@aws-sdk/client-cloudformation": "^3.272.0",
"@aws-sdk/client-ec2": "^3.272.0",
"@aws-sdk/client-ecr": "^3.272.0",
"@aws-sdk/client-ecs": "^3.272.0",
"@aws-sdk/client-s3": "^3.272.0",
"@aws-sdk/client-secrets-manager": "^3.272.0",
"@aws-sdk/client-sts": "^3.730.0",
"@aws-sdk/credential-providers": "^3.272.0",
"@openaddresses/cfn-config": "^8.0.0",
"ajv": "^8.6.3",
"cli-table": "^0.3.1",
"handlebars": "^4.7.7",
"inquirer": "^13.0.0",
"ora": "^9.0.0",
"prompt": "^1.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.0",
"@types/cli-table": "^0.3.4",
"@types/node": "^25.0.0",
"@types/prompt": "^1.1.8",
"eslint": "^10.0.0",
"eslint-plugin-n": "^17.10.3",
"typedoc": "^0.28.0",
"typescript": "^6.0.2",
"typescript-eslint": "^8.46.1",
"vitest": "^4.0.0"
}
}