-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.1 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
{
"name": "bower-outdated",
"version": "0.8.0",
"description": "This command will check the bower registry to see if any (or, specific) installed packages are currently outdated",
"license": "Apache-2.0",
"engines": {
"node": ">=0.8.0"
},
"directories": {
"lib": "./lib"
},
"main": "lib/index.js",
"bin": {
"bower-outdated": "./bin/bower-outdated"
},
"files": [
"bin",
"lib"
],
"preferGlobal": true,
"scripts": {
"prepublish": "coffee -o lib -c src/index.coffee",
"test": "echo \"no test specified\" && exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HugoCapocci/bower-outdated.git"
},
"keywords": [
"bower",
"dependency",
"update",
"outdated"
],
"author": "Hugo Capocci",
"bugs": {
"url": "https://github.com/HugoCapocci/bower-outdated/issues"
},
"homepage": "https://github.com/HugoCapocci/bower-outdated#readme",
"dependencies": {
"ansicolors": "^0.3.2",
"bluebird": "3.5.0",
"bower": "1.8.8",
"lodash": "^4.17.4",
"semver": "^5.3.0",
"text-table": "^0.2.0"
}
}