-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
61 lines (61 loc) · 1.29 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
{
"name": "npm-up",
"version": "2.7.0",
"description": "Check the latest versions of dependencies on npm gracefully, and do whatever you want.",
"main": "./dist/npm-up.js",
"bin": {
"npm-up": "./bin/bin.js"
},
"nofile": {
"preRequire": [
"coffee-script/register"
]
},
"preferGlobal": true,
"scripts": {
"prepublish": "no build -a",
"test": "node ci.js",
"build": "no build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dracupid/npm-up.git"
},
"keywords": [
"dependency",
"install",
"latest",
"npm",
"update",
"version"
],
"files": [
"bin",
"dist"
],
"author": "Dracupid <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dracupid/npm-up/issues"
},
"homepage": "https://github.com/dracupid/npm-up",
"dependencies": {
"chalk": "^4.1.0",
"cli-spinner": "^0.2.10",
"commander": "^2.19.0",
"global-npm": "latest",
"kiss-request": "^1.0.0",
"nofs": "0.12.2",
"semver": "latest",
"underscore": "^1.12.1"
},
"devDependencies": {
"coffeelint": "2.1.0",
"coffee-script": "latest",
"dracupid-no": "https://github.com/dracupid/dracupid-no.git",
"nokit": "0.27.12"
},
"engines": {
"node": ">=0.10.0"
}
}