-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.31 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.31 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
{
"name": "serverless-aws-servicecatalog",
"version": "2.1.0",
"description": "A plugin to allow the provisioning of AWS Service Catalog products with the Serverless Framework",
"main": "src/aws-compile-servicecatalog.js",
"homepage": "https://github.com/godaddy/serverless-aws-servicecatalog",
"bugs": "https://github.com/godaddy/serverless-aws-servicecatalog/issues",
"keywords": [
"serverless",
"plugin",
"aws",
"servicecatalog",
"service catalog"
],
"scripts": {
"test": "mocha",
"test-coverage": "nyc --reporter=lcov mocha",
"posttest": "npm run lint",
"lint": "eslint . --cache"
},
"repository": {
"type": "git",
"url": "git@github.com:godaddy/serverless-aws-servicecatalog.git"
},
"author": "GoDaddy.com Operating Company, LLC",
"maintainers": [
"John Smey <jksmey@gmail.com>",
"Jonathan Keslin <github@jonathankeslin.com>"
],
"license": "MIT",
"dependencies": {
"chalk": "^4.1.2"
},
"devDependencies": {
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"eslint": "^8.8.0",
"eslint-config-godaddy": "^6.0.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-mocha": "^10.0.3",
"mocha": "^9.2.0",
"nyc": "^15.1.0",
"serverless": "^2.72.2",
"sinon": "^13.0.0"
},
"engines": {
"node": ">=12"
}
}