-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.18 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
{
"name": "@amazon/glad",
"version": "1.2.4",
"description": "Generate a Layer Diagram view of your source layers",
"main": "cli/index.js",
"author": "[email protected]",
"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",
"nodejs",
"flutter",
"dart"
],
"dependencies": {
"chalk": "^5.3.0",
"ts-morph": "^21.0.1",
"yargs": "^17.7.2"
},
"devDependencies": {
"depcheck": "^1.4.2",
"eslint": "^8.46.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-jsdoc": "^46.4.6",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-promise": "^6.1.1",
"mocha": "^10.2.0"
},
"scripts": {
"test": "mocha",
"lint": "eslint . --fix",
"release": "npm install && depcheck . && eslint . --fix && mocha && npm run start",
"start": "node cli/index.js -sld -e '**/demoApp/**' ."
}
}