-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
54 lines (54 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
49
50
51
52
53
54
{
"name": "lerna-dependency-graph",
"version": "1.1.0",
"author": "Jonathan Giroux <giroux.jo@gmail.com>",
"license": "MIT",
"repository": "KoltesDigital/lerna-dependency-graph",
"description": "Outputs dependencies in a Lerna monorepo using Graphviz.",
"keywords": [
"graphviz",
"lerna",
"monorepo"
],
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"bin": {
"lerna-dependency-graph": "lib/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch --preserveWatchOutput"
},
"dependencies": {
"@lerna/project": "^4.0.0",
"graphviz": "0.0.9",
"yargs": "^16.2.0"
},
"devDependencies": {
"@types/graphviz": "0.0.32",
"@types/node": "^14.14.37",
"@types/yargs": "^16.0.1",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"typescript": "^4.2.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{json,md,yml}": [
"prettier --write",
"git add"
],
"*.{ts}": [
"tslint --fix",
"git add"
]
}
}