forked from aws-cloudformation/cfn-lint-visual-studio-code
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.44 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "vscode-cfn-lint",
"description": "CloudFormation linter",
"author": "Kevin DeJong",
"license": "Apache-2.0",
"version": "0.6.5",
"publisher": "kddejong",
"engines": {
"vscode": "^1.25.0"
},
"repository": {
"type": "git",
"url": "https://github.com/awslabs/aws-cfn-lint-visual-studio-code.git"
},
"bugs": {
"url": "https://github.com/awslabs/aws-cfn-lint-visual-studio-code/issues"
},
"main": "./client/out/extension",
"activationEvents": [
"onLanguage:yaml",
"onLanguage:json"
],
"homepage": "https://github.com/awslabs/aws-cfn-lint-visual-studio-code/blob/master/README.md",
"scripts": {
"postinstall": "cd server && npm install && cd ../client && npm install && cd ..",
"vscode:prepublish": "cd client && npm run update-vscode && cd .. && npm run compile",
"compile": "npm run compile:client && npm run compile:server",
"compile:client": "tsc -p ./client/tsconfig.json",
"watch:client": "tsc -w -p ./client/tsconfig.json",
"compile:server": "tsc -p ./server/tsconfig.json",
"watch:server": "tsc -w -p ./server/tsconfig.json",
"test": "sh ./.scripts/e2e.sh",
"lint": "tslint --project server/tsconfig.json && tslint --project client/tsconfig.json"
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^6.14.2",
"tslint": "^5.17.0",
"typescript": "^2.9.2"
},
"contributes": {
"configuration": {
"type": "object",
"title": "CloudFormation Linter configuration",
"properties": {
"cfnLint.path": {
"type": "string",
"default": "cfn-lint",
"description": "Path to cfn-lint"
},
"cfnLint.appendRules": {
"type": "array",
"default": [],
"description": "Append Rules Directories"
},
"cfnLint.ignoreRules": {
"type": "array",
"default": [],
"description": "Ignore Rules"
},
"cfnLint.overrideSpecPath": {
"type": "string",
"default": "",
"description": "(Optional) Path to an override specfile json file"
}
}
}
}
}