-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1001 Bytes
/
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
{
"name": "cfn-lint-to-codeframe",
"version": "1.0.6",
"description": "",
"scripts": {
"prettier": "prettier --ignore-path .gitignore \"**/*.{js,jsx,ts,tsx,html,vue,css,less,scss,graphql,yaml,yml,json,json5,md,mdx}\"",
"check:format": "npm run prettier -- --check",
"fix:format": "npm run prettier -- --write",
"test": "echo \"Error: no test specified\" && exit 1"
},
"main": "src/index.js",
"bin": "src/index.js",
"files": [
"src/"
],
"keywords": [
"AWS",
"CloudFormation",
"linter"
],
"author": "Graham McGregor",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Graham42/cfn-lint-to-codeframe.git"
},
"dependencies": {
"@babel/code-frame": "^7.12.13",
"chalk": "^4.1.0",
"get-stdin": "^8.0.0",
"json-source-map": "^0.6.1"
},
"devDependencies": {
"@types/babel__code-frame": "^7.0.2",
"@types/node": "^12.19.16",
"prettier": "^2.6.2",
"typescript": "^4.1.5"
}
}