-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 1.9 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
73
74
75
76
77
78
79
80
81
{
"name": "npm-check-updates",
"version": "2.15.0",
"author": "Tomas Junnonen <[email protected]>",
"license": "Apache-2.0",
"contributors": [
"Raine Revere (https://github.com/raineorshine)"
],
"description": "Find newer versions of dependencies than what your package.json or bower.json allows",
"keywords": [
"npm",
"bower",
"check",
"find",
"discover",
"updates",
"upgrades",
"dependencies",
"package.json",
"bower.json",
"updater",
"version",
"management",
"ncu"
],
"preferGlobal": true,
"engines": {
"node": ">=0.12"
},
"main": "./lib/npm-check-updates",
"scripts": {
"lint": "eslint bin lib test",
"watch": "chokidar \"lib/**/*.js\" -c \"npm run test\"",
"test": "npm run lint ; mocha && mocha test/individual"
},
"bin": {
"npm-check-updates": "./bin/npm-check-updates",
"ncu": "./bin/ncu"
},
"repository": {
"type": "git",
"url": "https://github.com/tjunnone/npm-check-updates.git"
},
"homepage": "https://github.com/tjunnone/npm-check-updates",
"dynamicDependencies": {
"bower": "^1.6.5"
},
"dependencies": {
"bluebird": "^3.4.3",
"chalk": "^1.1.3",
"cint": "^8.2.1",
"cli-table": "^0.3.1",
"commander": "^2.9.0",
"fast-diff": "^1.0.1",
"find-up": "1.1.2",
"get-stdin": "^5.0.1",
"json-parse-helpfulerror": "^1.0.3",
"lodash": "^4.15.0",
"node-alias": "^1.0.4",
"npm": "^3.10.6",
"npmi": "^2.0.1",
"rc-config-loader": "^2.0.1",
"semver": "^5.3.0",
"semver-utils": "^1.1.1",
"spawn-please": "^0.3.0",
"update-notifier": "^2.2.0"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"chai-string": "^1.2.0",
"chokidar-cli": "^1.2.0",
"eslint": "^4.0.0",
"mocha": "^3.0.2",
"should": "^11.1.0",
"snyk": "^1.25.1",
"tmp": "0.0.31"
},
"files": [
"bin",
"lib"