-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 1.88 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": "gulp-npm-check",
"version": "1.1.0",
"description": "Gulp wrapper around npm-check",
"main": "lib/index.js",
"scripts": {
"lint": "gulp lint",
"test": "gulp build; mocha",
"start": "gulp build; node lib/index",
"prepublish": "gulp build",
"release:major": "changelog -M && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version major",
"release:minor": "changelog -m && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version minor",
"release:patch": "changelog -p && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version patch"
},
"keywords": [
"gulpplugin",
"npm",
"outdated",
"dependencies",
"unused",
"changelog",
"check",
"updates",
"api",
"interactive",
"cli",
"safe",
"updating",
"updater",
"installer",
"devDependencies"
],
"author": "James Whitmarsh",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jwhitmarsh/gulp-npm-check"
},
"bugs": {
"url": "https://github.com/jwhitmarsh/gulp-npm-check/issues"
},
"homepage": "https://github.com/jwhitmarsh/gulp-npm-check",
"files": [
"lib"
],
"dependencies": {
"babel-plugin-array-includes": "2.0.3",
"babel-runtime": "6.6.1",
"findup-sync": "0.4.0",
"gulp-util": "3.0.7",
"lodash": "4.8.2",
"npm-check": "5.2.1",
"rimraf": "1.0.9"
},
"devDependencies": {
"babel-eslint": "6.0.2",
"babel-plugin-add-module-exports": "0.1.2",
"babel-plugin-transform-runtime": "6.7.5",
"babel-polyfill": "6.7.4",
"babel-preset-es2015": "6.6.0",
"eslint": "2.7.0",
"eslint-config-google": "0.4.0",
"generate-changelog": "1.0.1",
"gulp": "3.9.1",
"gulp-babel": "6.1.2",
"gulp-eslint": "2.0.0",
"gulp-mocha": "2.2.0",
"run-sequence": "1.1.5",
"should": "8.3.0"
}
}