forked from architect/destroy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.24 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
{
"name": "@architect/destroy",
"version": "2.0.1",
"description": "Destroy projects created with Architect",
"main": "src/index.js",
"bin": {
"arc-destroy": "src/cli.js"
},
"scripts": {
"lint": "eslint . --fix",
"test": "npm run lint && npm run coverage",
"test:unit": "cross-env tape 'test/unit/**/*-test.js' | tap-spec",
"coverage": "cross-env nyc --reporter=lcov --reporter=text npm run test:unit",
"test:integration": "cross-env tape test/integration/**/*-test.js | tap-spec",
"rc": "npm version prerelease --preid RC"
},
"license": "Apache-2.0",
"engines": {
"node": ">=14"
},
"repository": {
"type": "git",
"url": "https://github.com/architect/destroy.git"
},
"dependencies": {
"@architect/inventory": "~2.0.4",
"@architect/utils": "~3.0.2",
"aws-sdk": "2.880.0",
"lodash.chunk": "~4.2.0",
"run-parallel": "~1.2.0",
"run-waterfall": "~1.1.7"
},
"devDependencies": {
"@architect/deploy": "~3.0.1",
"@architect/eslint-config": "~1.0.0",
"aws-sdk-mock": "5.1.0",
"cross-env": "~7.0.3",
"eslint": "~7.31.0",
"nyc": "~15.1.0",
"tap-spec": "~5.0.0",
"tape": "~5.3.0"
},
"eslintConfig": {
"extends": "@architect/eslint-config"
}
}