This repository has been archived by the owner on Apr 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
64 lines (64 loc) · 1.57 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
{
"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": {
"array-intersection": "^0.1.2",
"clone": "^2.1.1",
"colors": "^1.2.1",
"commander": "^2.15.0",
"core-js": "^2.5.1",
"merge-options": "^1.0.1",
"opn": "^5.2.0",
"winston": "^2.4.0",
"sha.js": "^2.4.11",
"source-map-support": "^0.5.0",
"safe-buffer": "^5.1.1",
"js-yaml": "^3.13.0"
},
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/clone": "^0.1.30",
"@types/colors": "~1.1.3",
"@types/commander": "^2.11.0",
"@types/js-yaml": "^3.12.0",
"@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",
"dependency-check": "^2.9.1",
"mocha": "^5.2.0",
"proxyquire-2": "^1.0.7",
"typescript": "~2.6.2"
},
"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"
},
"license": "MIT"
}