-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.12 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": "dependency-updater",
"version": "1.2.1",
"description": "A tool that checks npm dependencies and sends a github pull request should updates be available",
"main": "./index.js",
"bin": {
"dependency-updater": "./index.js"
},
"scripts": {
"pretest": "eslint lib test *.js",
"test": "mocha --recursive test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marekventur/dependency-updater.git"
},
"keywords": [
"npm",
"github",
"pr",
"package.json"
],
"author": "Marek Ventur <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/marekventur/dependency-updater/issues"
},
"homepage": "https://github.com/marekventur/dependency-updater#readme",
"engines": {
"node": ">=4.0.0"
},
"dependencies": {
"changelog": "^1.0.7",
"es6-promisify": "5.0.0",
"github": "5.0.0",
"npm": "3.10.8",
"semver": "5.3.0",
"underscore": "1.8.3",
"yargs": "6.0.0"
},
"devDependencies": {
"chai": "3.5.0",
"eslint": "3.7.1",
"mocha": "3.1.0",
"sinon": "1.17.6",
"tmp": "0.0.29"
}
}