forked from wix-incubator/lerna-script
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 746 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 746 Bytes
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
{
"name": "lerna-script-modules",
"private": true,
"version": "1.0.0",
"scripts": {
"postinstall": "lerna bootstrap",
"prepush": "lerna-script sync",
"precommit": "pretty-quick --staged",
"clean": "lerna-script clean",
"test": "lerna-script test",
"ls": "lerna-script",
"idea": "lerna-script idea",
"release": "lerna publish"
},
"devDependencies": {
"husky": "0.14.3",
"lerna": "2.11.0",
"lerna-script": "0.9.0",
"lerna-script-tasks-depcheck": "0.9.1",
"lerna-script-tasks-dependencies": "0.9.2",
"lerna-script-tasks-idea": "0.9.2",
"lerna-script-tasks-modules": "0.9.1",
"lerna-script-tasks-npmfix": "0.9.1",
"prettier": "1.14.2",
"pretty-quick": "1.6.0"
}
}