forked from martysweet/cfn-lint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.4 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
{
"name": "cfn-lint",
"version": "0.0.0",
"description": "A more friendly CloudFormation JSON and YAML Validator",
"author": "Marty Sweet <npm@martysweet.co.uk>",
"homepage": "https://github.com/martysweet/cfn-lint#readme",
"keywords": [
"cloudformation",
"aws",
"yaml",
"json"
],
"bugs": {
"url": "https://github.com/martysweet/cfn-lint/issues"
},
"dependencies": {
"cloudformation-js-yaml-schema": "0.3.0",
"colors": "latest",
"commander": "latest",
"core-js": "^2.5.1",
"js-yaml": "^3.7.0",
"opn": "latest",
"winston": "latest",
"source-map-support": "^0.5.0"
},
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/colors": "^1.1.3",
"@types/commander": "^2.11.0",
"@types/js-yaml": "^3.9.1",
"@types/mocha": "^2.2.44",
"@types/node": "^8.0.50",
"@types/opn": "^3.0.28",
"@types/source-map-support": "^0.4.0",
"@types/winston": "^2.3.7",
"chai": "latest",
"mocha": "latest",
"typescript": "^2.6.1",
"dependency-check": "^2.9.1"
},
"scripts": {
"build": "tsc",
"test": "mocha lib/test",
"watch": "tsc -w",
"prepublish": "npm run build",
"deploy": "npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/martysweet/cfn-lint.git"
},
"types": "./lib/api.d.ts",
"main": "./lib/api.js",
"bin": {
"cfn-lint": "./lib/index.js"
}
}