forked from mattstyles/lerna-watch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 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
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "lerna-watch",
"version": "1.0.0",
"description": "Evaluates a dependency tree for a given package and executes commands in each package",
"main": "lib/index.js",
"bin": {
"lerna-watch": "./bin/lerna-watch.js"
},
"files": [
"lib",
"bin"
],
"scripts": {
"test": "ava --verbose"
},
"keywords": [
"lerna",
"watch",
"monorepo"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mattstyles/lerna-watch.git"
},
"bugs": {
"url": "https://github.com/mattstyles/lerna-watch/issues"
},
"homepage": "https://github.com/mattstyles/lerna-watch#readme",
"author": "Matt Styles <[email protected]>",
"license": "MIT",
"engines": {
"node": ">= 10"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"standard"
]
},
"standard": {
"ignore": [
"**/node_modules/**",
"**/dist/"
]
},
"peerDependencies": {
"lerna": "^3.22"
},
"dependencies": {
"@lerna/filter-packages": "^3.18.0",
"@lerna/package-graph": "^3.18.5",
"@lerna/project": "^3.21.0",
"chalk": "^4.1.0",
"cross-spawn": "^7.0.3",
"debug": "^4.3.1",
"errno": "^0.1.7",
"minimist": "^1.2.5",
"npmlog": "^4.1.2"
},
"devDependencies": {
"ava": "^3.9.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"standard": "^14.3.4"
}
}