forked from th0r/npm-upgrade
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.6 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
72
{
"name": "npm-upgrade",
"version": "1.4.1",
"description": "Interactive CLI utility to easily update outdated NPM dependencies",
"author": "Yuriy Grunin <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/th0r/npm-upgrade",
"changelog": "https://github.com/th0r/npm-upgrade/blob/master/CHANGELOG.md",
"bugs": {
"url": "https://github.com/th0r/npm-upgrade/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/th0r/npm-upgrade.git"
},
"main": "./lib/bin/cli.js",
"bin": "./lib/bin/cli.js",
"scripts": {
"prepare": "gulp build",
"lint": "eslint ."
},
"engines": {
"node": ">= 6"
},
"preferGlobal": true,
"dependencies": {
"babel-runtime": "6.26.0",
"bluebird": "3.5.1",
"chalk": "2.4.1",
"cli-table": "0.3.1",
"del": "3.0.0",
"detect-indent": "5.0.0",
"got": "8.3.2",
"inquirer": "6.0.0",
"lodash": "4.17.10",
"npm": "^3.10.6",
"npm-check-updates": "2.14.2",
"opener": "1.4.3",
"semver": "5.5.0",
"yargs": "12.0.1"
},
"devDependencies": {
"babel-core": "6.26.3",
"babel-eslint": "8.2.6",
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-env": "1.7.0",
"babel-preset-stage-2": "6.24.1",
"eslint": "4.19.1",
"eslint-config-th0r": "1.0.1",
"gulp": "4.0.0",
"gulp-babel": "7.0.1"
},
"files": [
"lib",
"src",
"db"
],
"directories": {
"lib": "./lib"
},
"keywords": [
"npm",
"update",
"outdated",
"dependencies",
"cli",
"interactive",
"automatic",
"changelog",
"ignore"
]
}