UNPKG

1.48 kBJSONView Raw
1{
2 "name": "@mapbox/cloudfriend",
3 "version": "2.8.2",
4 "description": "Helper functions for assembling CloudFormation templates in JavaScript",
5 "main": "index.js",
6 "engines": {
7 "node": ">=8"
8 },
9 "scripts": {
10 "pretest": "eslint index.js test lib bin cloudformation",
11 "test": "nyc tape test/*.test.js",
12 "coverage": "nyc --reporter html tape test/*.test.js && opener coverage/index.html",
13 "build-ci-template": "bin/build-template.js cloudformation/ci.template.js > cloudformation/ci.template.json",
14 "shortcuts-api-doc": "documentation build lib/shortcuts/index.js -f md -o lib/shortcuts/api.md"
15 },
16 "bin": {
17 "build-template": "bin/build-template.js",
18 "validate-template": "bin/validate-template.js"
19 },
20 "repository": {
21 "type": "git",
22 "url": "git+https://github.com/mapbox/cloudfriend.git"
23 },
24 "keywords": [
25 "AWS",
26 "CloudFormation"
27 ],
28 "author": "Mapbox",
29 "license": "ISC",
30 "bugs": {
31 "url": "https://github.com/mapbox/cloudfriend/issues"
32 },
33 "homepage": "https://github.com/mapbox/cloudfriend#readme",
34 "devDependencies": {
35 "@mapbox/eslint-config-mapbox": "^1.2.1",
36 "documentation": "^8.0.2",
37 "eslint": "^3.2.0",
38 "eslint-plugin-node": "^6.0.1",
39 "nyc": "^7.1.0",
40 "opener": "^1.4.1",
41 "tape": "^4.6.0"
42 },
43 "dependencies": {
44 "aws-sdk": "^2.4.11",
45 "minimist": "^1.2.0",
46 "redent": "^2.0.0"
47 },
48 "eslintConfig": {
49 "extends": "@mapbox/eslint-config-mapbox"
50 }
51}