-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
41 lines (41 loc) · 1.01 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
{
"name": "add-custom-resource",
"version": "5.0.0",
"description": "A helper library to add custom resources to a CloudFormation template",
"main": "add-custom-resource.js",
"scripts": {
"test": "nyc --all ava",
"posttest": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/dougmoscrop/add-custom-resource.git"
},
"keywords": [
"serverless",
"plugin",
"helper",
"custom",
"resource",
"aws"
],
"author": "Doug Moscrop <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dougmoscrop/add-custom-resource/issues"
},
"homepage": "https://github.com/dougmoscrop/add-custom-resource#readme",
"devDependencies": {
"ava": "^6.1.2",
"eslint": "^7.20.0",
"nyc": "^15.1.0",
"proxyquire": "^2.1.3",
"sinon": "^9.2.4"
},
"dependencies": {
"escape-json-node": "^2.0.0",
"rollup": "^2.40.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0"
}
}