mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-10 14:06:30 +00:00
89ec832ddf
Should be in branch instead
85 lines
2.3 KiB
JSON
85 lines
2.3 KiB
JSON
{
|
|
"name": "renovate",
|
|
"description": "Keep npm dependencies up-to-date via Pull Requests",
|
|
"version": "8.2.5",
|
|
"bin": "dist/renovate.js",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"build": "npm run transpile",
|
|
"eslint": "eslint --ignore-path .gitignore .",
|
|
"eslint-fix": "eslint --ignore-path .gitignore --fix .",
|
|
"heroku-push": "git push heroku master",
|
|
"heroku-scheduler": "heroku addons:open scheduler",
|
|
"istanbul": "istanbul cover _mocha test",
|
|
"mocha": "mocha test",
|
|
"npm-publish": "npm run update-docs && np",
|
|
"prepublish": "npm run build",
|
|
"pretest": "npm run build",
|
|
"start": "node dist/renovate",
|
|
"start-babel": "babel-node lib/renovate",
|
|
"start-raw": "node --harmony-async-await lib/renovate",
|
|
"test": "npm run eslint && npm run istanbul",
|
|
"transpile": "rimraf dist && mkdirp dist && babel lib --out-dir dist",
|
|
"update-docs": "bash bin/update-docs.sh"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/singapore/renovate.git"
|
|
},
|
|
"keywords": [
|
|
"npm",
|
|
"outdated",
|
|
"update"
|
|
],
|
|
"author": "Rhys Arkins <rhys@arkins.net>",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/singapore/renovate/issues"
|
|
},
|
|
"homepage": "https://github.com/singapore/renovate#readme",
|
|
"engines": {
|
|
"node": ">=6.9.0"
|
|
},
|
|
"dependencies": {
|
|
"changelog": "dylang/changelog#v1.2.0",
|
|
"clear-require": "2.0.0",
|
|
"commander": "2.9.0",
|
|
"gh-got": "5.0.0",
|
|
"got": "6.7.1",
|
|
"handlebars": "4.0.6",
|
|
"json-stringify-pretty-compact": "1.0.2",
|
|
"lodash": "4.17.4",
|
|
"registry-auth-token": "3.1.0",
|
|
"registry-url": "3.1.0",
|
|
"semver": "5.3.0",
|
|
"semver-stable": "2.0.4",
|
|
"winston": "2.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"babel-cli": "6.22.2",
|
|
"babel-plugin-transform-async-to-generator": "6.22.0",
|
|
"chai": "3.5.0",
|
|
"eslint": "3.14.1",
|
|
"eslint-config-airbnb-base": "11.0.1",
|
|
"eslint-plugin-import": "2.2.0",
|
|
"eslint-plugin-promise": "3.4.0",
|
|
"istanbul": "0.4.5",
|
|
"mkdirp": "0.5.1",
|
|
"mocha": "3.2.0",
|
|
"np": "2.12.0",
|
|
"rimraf": "2.5.4"
|
|
},
|
|
"babel": {
|
|
"plugins": [
|
|
"transform-async-to-generator"
|
|
]
|
|
},
|
|
"renovate": {
|
|
"labels": [
|
|
"ready"
|
|
],
|
|
"assignees": [
|
|
"rarkins"
|
|
]
|
|
}
|
|
}
|