-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.55 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.55 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
50
51
52
53
54
55
56
57
{
"name": "@mapbox/cloudfriend",
"version": "9.4.1",
"description": "Helper functions for assembling CloudFormation templates in JavaScript",
"main": "index.js",
"engines": {
"node": ">=20"
},
"scripts": {
"pretest": "npm run lint && npm run shortcuts-api-doc",
"lint": "eslint index.js test lib bin",
"lint:fix": "npm run lint -- --fix",
"test": "jest --coverage",
"test:update": "jest --updateSnapshot",
"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": "^5.0.1",
"eslint": "^8.57.0",
"eslint-plugin-node": "^6.0.1",
"jest": "^29.7.0",
"jsdoc-to-markdown": "^9.1.3"
},
"dependencies": {
"@aws-sdk/client-cloudformation": "^3.1004.0",
"minimist": "^1.2.6",
"redent": "^2.0.0"
},
"eslintConfig": {
"extends": "@mapbox/eslint-config-mapbox",
"env": {
"jest": true
},
"ignorePatterns": [
"test/fixtures/malformed.json"
]
}
}