-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.69 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
{
"name": "serverless-child-stack-manager",
"version": "3.0.3",
"description": "Serverless plugin for removing a set of related stacks upon 'serverless remove'",
"main": "dist/index.js",
"scripts": {
"prebuild": "npm run lint",
"build": "tsc --b tsconfig.app.json",
"lint": "eslint \"**/*.ts\" --ignore-path .gitignore",
"clean": "rimraf out-tsc",
"pretest:build": "npm run clean",
"test:build": "tsc --b tsconfig.spec.json",
"test:exec": "jasmine --config=jasmine.json",
"test": "npm run test:build && nyc npm run test:exec",
"test:ci": "npm run test:build && nyc --reporter=cobertura --reporter=html --reporter=text-summary npm run test:exec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coyoteecd/serverless-child-stack-manager.git"
},
"keywords": [
"serverless",
"serverless-plugin",
"aws",
"stackset"
],
"author": "coyoteecd",
"license": "MIT",
"bugs": {
"url": "https://github.com/coyoteecd/serverless-child-stack-manager/issues"
},
"homepage": "https://github.com/coyoteecd/serverless-child-stack-manager#readme",
"devDependencies": {
"@types/jasmine": "^4.3.1",
"@types/node": "^16.18.6",
"@types/serverless": "^3.12.9",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"ajv": "^8.11.2",
"aws-sdk": "^2.1270.0",
"eslint": "^8.29.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"jasmine": "^4.5.0",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"serverless": "^3.25.1",
"typescript": "^4.9.4"
},
"peerDependencies": {
"aws-sdk": "^2.600.0",
"serverless": "^3.0.0"
}
}