-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
71 lines (71 loc) · 2.14 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
63
64
65
66
67
68
69
70
71
{
"name": "@architect/deploy",
"version": "5.0.7",
"description": "Deploys @architect projects",
"main": "index.js",
"bin": {
"arc-deploy": "src/cli/index.js"
},
"scripts": {
"test": "npm run lint && npm run test:integration && npm run coverage",
"test:nolint": "npm run test:integration && npm run coverage",
"test:unit": "cross-env AWS_ACCESS_KEY_ID=\"blah\" AWS_SECRET_ACCESS_KEY=\"blah\" tape 'test/unit/**/*-test.js' | tap-arc",
"test:slow": "cross-env tape 'test/slow/**/*-test.js' | tap-arc",
"test:integration": "cross-env AWS_ACCESS_KEY_ID=\"blah\" AWS_SECRET_ACCESS_KEY=\"blah\" tape 'test/integration/**/*-test.js' | tap-arc",
"coverage": "nyc --reporter=lcov --reporter=text npm run test:unit",
"lint": "eslint . --fix",
"rc": "npm version prerelease --preid RC"
},
"engines": {
"node": ">=16"
},
"repository": {
"type": "git",
"url": "git+https://github.com/architect/deploy.git"
},
"keywords": [
"arc",
"deploy"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/architect/deploy/issues"
},
"homepage": "https://github.com/architect/deploy#readme",
"dependencies": {
"@architect/create": "~5.0.3",
"@architect/hydrate": "~4.0.6",
"@architect/inventory": "~4.0.5",
"@architect/package": "~9.0.3",
"@architect/utils": "~4.0.6",
"@aws-lite/apigatewayv2": "^0.0.4",
"@aws-lite/client": "^0.21.1",
"@aws-lite/cloudformation": "^0.0.5",
"@aws-lite/cloudfront": "^0.0.8",
"@aws-lite/lambda": "^0.0.5",
"@aws-lite/s3": "^0.1.21",
"@aws-lite/ssm": "^0.2.3",
"chalk": "4.1.2",
"fs-extra": "~11.2.0",
"get-folder-size": "2.0.1",
"glob": "~10.3.12",
"mime-types": "~2.1.35",
"minimist": "~1.2.8",
"path-sort": "~0.1.0",
"run-parallel": "~1.2.0",
"run-series": "~1.1.9",
"run-waterfall": "~1.1.7",
"zip-dir": "~2.0.0",
"zipit": "~2.0.0"
},
"devDependencies": {
"@architect/eslint-config": "~3.0.0",
"cross-env": "~7.0.3",
"eslint": "~9.1.1",
"mock-tmp": "~0.0.4",
"nyc": "~15.1.0",
"proxyquire": "~2.1.3",
"tap-arc": "~1.2.2",
"tape": "~5.7.5"
}
}