forked from architect/deploy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.87 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
{
"name": "@architect/deploy",
"version": "4.3.0",
"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:unit": "cross-env tape 'test/unit/**/*-test.js' | tap-spec",
"test:slow": "cross-env tape 'test/slow/**/*-test.js' | tap-spec",
"test:integration": "cross-env AWS_ACCESS_KEY_ID=\"blah\" AWS_SECRET_ACCESS_KEY=\"blah\" tape 'test/integration/**/*-test.js' | tap-spec",
"coverage": "nyc --reporter=lcov --reporter=text npm run test:unit",
"lint": "eslint . --fix",
"rc": "npm version prerelease --preid RC"
},
"engines": {
"node": ">=14"
},
"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": "~4.1.4",
"@architect/hydrate": "~3.1.10",
"@architect/inventory": "~3.4.0",
"@architect/package": "~8.4.0",
"@architect/utils": "~3.1.2",
"chalk": "4.1.2",
"fs-extra": "~11.1.0",
"get-folder-size": "2.0.1",
"glob": "~8.1.0",
"mime-types": "~2.1.35",
"minimist": "~1.2.7",
"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": "~2.1.1",
"aws-sdk-mock": "~5.8.0",
"cross-env": "~7.0.3",
"eslint": "~8.32.0",
"mock-fs": "~5.2.0",
"nyc": "~15.1.0",
"proxyquire": "~2.1.3",
"tap-spec": "~5.0.0",
"tape": "~5.6.3"
},
"eslintConfig": {
"extends": "@architect/eslint-config"
}
}