-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.28 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
{
"name": "yarn-update-dependency",
"version": "0.7.1",
"description": "Update a version for a specific dependency",
"author": "Francesco Novy <[email protected]>",
"license": "MIT",
"private": false,
"repository": "https://github.com/mydea/yarn-update-dependency",
"scripts": {
"test": "yu aaa 0.1.0",
"lint:js": "eslint . --cache",
"lint:js:fix": "eslint . --cache --fix"
},
"main": "./lib/update-dep.js",
"bin": {
"yarn-update": "./bin/yarn-update",
"yu": "./bin/yarn-update"
},
"directories": {
"bin": "./bin",
"lib": "./lib"
},
"dependencies": {
"@yarnpkg/lockfile": "^1.1.0",
"chalk": "^4.0.0",
"commander": "^8.0.0",
"glob": "^7.1.3"
},
"devDependencies": {
"@babel/eslint-parser": "~7.18.9",
"@release-it-plugins/lerna-changelog": "~5.0.0",
"eslint": "~8.21.0",
"fabscale-eslint-config": "~1.1.1",
"prettier": "~2.7.1",
"release-it": "~15.2.0"
},
"engines": {
"node": "12.* || 14.* || >= 16"
},
"release-it": {
"plugins": {
"@release-it-plugins/lerna-changelog": {
"infile": "CHANGELOG.md"
}
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true
}
},
"volta": {
"node": "16.13.0",
"yarn": "1.22.17"
}
}