-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
63 lines (63 loc) · 1.38 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
{
"name": "pkg-upgrader",
"version": "0.3.6",
"description": "CLI builder to help users upgrade library versions.",
"license": "MIT",
"repository": "benmonro/pkg-upgrader",
"main": "lib/index.js",
"contributors": [
{
"name": "Jeroen Engels",
"email": "[email protected]",
"url": "github.com/jfmengels"
}
],
"author": {
"name": "Ben Monro",
"email": "[email protected]",
"url": "github.com/benmonro"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"build": "babel src --out-dir lib",
"std-version": "standard-version -m \"chore(release): version %s build ${CIRCLE_BUILD_NUM} [ci skip]\"",
"test": "jest"
},
"files": [
"src/index.js",
"lib",
"!*.test.js"
],
"keywords": [
"codemod",
"update",
"upgrade",
"jscodeshift",
"transform",
"npm"
],
"dependencies": {
"bluebird": "^3.4.0",
"chalk": "^2.3.2",
"globby": "^4.1.0",
"inquirer": "^1.0.2",
"is-git-clean": "^1.0.0",
"jscodeshift": "^0.6.4",
"meow": "^3.7.0",
"semver": "^5.1.0",
"update-notifier": "^3.0.0"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-function-bind": "^7.2.0",
"@babel/preset-env": "^7.4.5",
"jest": "^24.8.0",
"standard-version": "^4.3.0"
},
"jest": {
"testURL": "http://localhost/"
}
}