-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
54 lines (54 loc) · 1.57 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": "@mapbox/cloudfriend",
"version": "8.2.0",
"description": "Helper functions for assembling CloudFormation templates in JavaScript",
"main": "index.js",
"engines": {
"node": ">=14"
},
"scripts": {
"pretest": "npm run lint && npm run shortcuts-api-doc",
"lint": "eslint index.js test lib bin cloudformation",
"lint:fix": "npm run lint -- --fix",
"test": "nyc tape test/*.test.js | tap-spec",
"coverage": "nyc --reporter html tape test/*.test.js && opener coverage/index.html",
"build-ci-template": "bin/build-template.js cloudformation/ci.template.js > cloudformation/ci.template.json",
"shortcuts-api-doc": "jsdoc2md lib/shortcuts/*.js > lib/shortcuts/api.md"
},
"bin": {
"build-template": "bin/build-template.js",
"validate-template": "bin/validate-template.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mapbox/cloudfriend.git"
},
"keywords": [
"AWS",
"CloudFormation"
],
"author": "Mapbox",
"license": "ISC",
"bugs": {
"url": "https://github.com/mapbox/cloudfriend/issues"
},
"homepage": "https://github.com/mapbox/cloudfriend#readme",
"devDependencies": {
"@mapbox/eslint-config-mapbox": "^1.2.1",
"eslint": "^4.18.2",
"eslint-plugin-node": "^6.0.1",
"jsdoc-to-markdown": "^7.1.1",
"nyc": "^14.1.0",
"opener": "^1.4.1",
"tap-spec": "^5.0.0",
"tape": "^4.6.0"
},
"dependencies": {
"aws-sdk": "^2.1425.0",
"minimist": "^1.2.6",
"redent": "^2.0.0"
},
"eslintConfig": {
"extends": "@mapbox/eslint-config-mapbox"
}
}