This repository has been archived by the owner on Jun 23, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
79 lines (79 loc) · 1.99 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
{
"name": "ci-yarn-upgrade",
"version": "0.7.6",
"description": "Keep NPM dependencies up-to-date with CI, providing version-to-version diff for each library",
"preferGlobal": true,
"bin": "bin/main.js",
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"compile": "cross-env NODE_ENV=production babel src --out-dir lib --source-maps inline",
"lint": "eslint src/ test/",
"test": "cross-env NODE_ENV=development ava",
"build": "npm run lint && npm run compile && npm run test",
"watch": "babel src --out-dir lib --watch --source-maps inline",
"watch:test": "cross-env NODE_ENV=development ava --watch",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/taichi/ci-yarn-upgrade.git"
},
"keywords": [
"yarn",
"yarnpkg",
"npm",
"pr"
],
"author": "taichi",
"contributors": [
"Michikawa Masayoshi <[email protected]>",
"tsub <[email protected]>",
"willnet <[email protected]>",
"dblN",
"dim0627",
"pipopotamasu",
"mickamy",
"hatappi"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/taichi/ci-yarn-upgrade/issues"
},
"homepage": "https://github.com/taichi/ci-yarn-upgrade",
"dependencies": {
"@octokit/rest": "^16.28.1",
"@taichi/cli-table2": "^0.3.0",
"colors": "^1.3.3",
"commander": "^2.20.0",
"cross-spawn": "^6.0.5",
"git-url-parse": "^11.1.2",
"lodash": "^4.17.11",
"moment": "^2.24.0",
"mz": "^2.6.0",
"read-package-json": "^2.0.4",
"read-package-tree": "^5.2.2",
"sha.js": "^2.4.5"
},
"devDependencies": {
"@babel/register": "^7.4.4",
"ava": "^2.1.0",
"babel-cli": "^6.23.0",
"babel-preset-env": "^1.1.4",
"chokidar": "^3.0.1",
"cross-env": "^5.0.5",
"eslint": "^5.16.0"
},
"ava": {
"files": [
"test/**/*.js"
],
"sources": [
"{src, test}/**/*.js"
],
"require": [
"@babel/register"
]
}
}