-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
46 lines (46 loc) · 1.15 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
{
"name": "@amazon/glad",
"version": "1.1.2",
"description": "Generate a Layer Diagram view of your source layers",
"main": "cli/index.js",
"author": "jp@vteam.com",
"license": "Apache-2.0",
"bin": {
"glad": "cli/index.js"
},
"type": "module",
"homepage": "https://github.com/amzn/generate-layer-architecture-diagram",
"repository": {
"type": "git",
"url": "https://github.com/amzn/generate-layer-architecture-diagram"
},
"keywords": [
"amazon",
"layer",
"diagram",
"architecture",
"validation"
],
"dependencies": {
"chalk": "^5.0.1",
"ts-morph": "^15.1.0",
"yargs": "^17.5.1"
},
"devDependencies": {
"depcheck": "^1.4.2",
"eslint": "^8.21.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^39.3.4",
"eslint-plugin-n": "^15.2.4",
"eslint-plugin-promise": "^6.0.0",
"mocha": "^10.0.0"
},
"scripts": {
"test": "mocha",
"lint": "eslint .",
"lintfix": "eslint . --fix",
"release": "npm install && depcheck . && eslint . && mocha && npm run start",
"start": "node cli/index.js -sl -e **/demoApp*"
}
}