-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.68 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
{
"name": "uptodate",
"version": "1.0.2",
"description": "A CLI tool to update dependencies in your package.json",
"main": "lib/command.js",
"bin": {
"uptodate": "lib/command.js"
},
"files": [
"lib"
],
"dependencies": {
"btoa": "^1.1.2",
"es6-promise": "^2.1.1",
"github-url-from-git": "^1.4.0",
"minimist": "^1.1.1",
"npm-run-all": "^1.0.0",
"opener": "^1.4.1",
"which": "^1.0.9"
},
"devDependencies": {
"babel": "^5.1.11",
"babel-core": "^5.1.11",
"babel-plugin-espower": "^0.2.2",
"coveralls": "^2.11.2",
"cpx": "^1.1.6",
"eslint": "^0.20.0",
"istanbul": "^0.3.13",
"mkdirp": "^0.5.0",
"mocha": "^2.2.4",
"npm-run-all": "^1.2.3",
"power-assert": "^0.11.0",
"proxyquire": "^1.4.0",
"rimraf": "^2.3.2"
},
"scripts": {
"clean": "rimraf lib",
"lint": "eslint src",
"build": "npm-run-all clean lint && babel src --out-dir lib",
"test": "eslint src && istanbul cover node_modules/mocha/bin/_mocha -- test/*.js --require mocha-babel-hook --colors --timeout 30000",
"testing": "mocha test/*.js --require mocha-babel-hook --colors --watch --growl --timeout 30000",
"coveralls": "cat coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mysticatea/uptodate.git"
},
"keywords": [
"cli",
"commandline",
"tool",
"update",
"upgrade",
"up-to-date",
"npm",
"package.json",
"dependency",
"dependencies"
],
"author": "Toru Nagashima",
"license": "MIT",
"bugs": {
"url": "https://github.com/mysticatea/uptodate/issues"
},
"homepage": "https://github.com/mysticatea/uptodate#readme"
}