forked from Anifacted/lerna-update-wizard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.63 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
71
{
"name": "lerna-update-wizard",
"bin": {
"lernaupdate": "./bin/lernaupdate"
},
"files": [
"src",
"bin"
],
"version": "0.17.8",
"main": "index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Anifacted/lerna-update-wizard"
},
"dependencies": {
"chalk": "^2.3.0",
"execution-time": "^1.2.0",
"fs-extra": "^7.0.0",
"globby": "^8.0.1",
"inquirer": "^7.0.0",
"inquirer-autocomplete-prompt": "^1.0.1",
"lodash": "^4.17.4",
"meow": "^4.0.0",
"minimist": "^1.2.3",
"semver-compare": "^1.0.0"
},
"devDependencies": {
"@rauschma/stringio": "^1.4.0",
"eslint": "^4.14.0",
"eslint-config-pretty-standard": "^1.1.0",
"jest": "^23.4.2",
"lint-staged": "^9.4.3",
"node-publisher": "^1.4.0",
"pre-commit": "^1.2.2",
"prettier": "^1.9.2",
"sinon": "^6.1.4",
"unexpected": "^10.38.0",
"unexpected-sinon": "^10.10.1"
},
"scripts": {
"test": "jest --verbose --runInBand",
"release": "node-publisher release",
"travis": "npm run lint && npm run format && npm run isGitClean && npm test",
"isGitClean": "./bin/is_git_clean",
"lint": "eslint 'src/**/*.js'",
"format": "./node_modules/.bin/prettier --write 'src/**/*.js'",
"lint-staged": "lint-staged"
},
"keywords": [
"dependency manager",
"bulk update",
"monorepo",
"lerna",
"yarn workspaces",
"workspace",
"dependencies"
],
"jest": {
"testURL": "http://localhost"
},
"pre-commit": "lint-staged",
"lint-staged": {
"*.js": [
"npm run format",
"npm run lint",
"git add"
]
}
}