mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-10 14:06:30 +00:00
3937086559
* Update dependency eslint to version 3.17.0 * Update dependency eslint to version 3.17.1
97 lines
2.5 KiB
JSON
97 lines
2.5 KiB
JSON
{
|
|
"name": "renovate",
|
|
"description": "Keep npm dependencies up-to-date via Pull Requests",
|
|
"version": "8.8.2",
|
|
"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",
|
|
"npm-publish": "npm run update-docs && np && yarn install",
|
|
"prepublish": "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 jest",
|
|
"jest": "jest",
|
|
"transpile": "rimraf dist && mkdirp dist && babel lib --out-dir dist",
|
|
"update-docs": "npm run build && 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": {
|
|
"babel-jest": "19.0.0",
|
|
"changelog": "dylang/changelog#v1.2.0",
|
|
"commander": "2.9.0",
|
|
"gh-got": "5.0.0",
|
|
"gl-got": "6.0.2",
|
|
"got": "6.7.1",
|
|
"handlebars": "4.0.6",
|
|
"jest": "19.0.0",
|
|
"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",
|
|
"tmp": "0.0.31",
|
|
"winston": "2.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"babel-cli": "6.23.0",
|
|
"babel-plugin-transform-async-to-generator": "6.22.0",
|
|
"chai": "3.5.0",
|
|
"eslint": "3.17.1",
|
|
"eslint-config-airbnb-base": "11.1.0",
|
|
"eslint-plugin-import": "2.2.0",
|
|
"eslint-plugin-promise": "3.5.0",
|
|
"mkdirp": "0.5.1",
|
|
"np": "2.12.0",
|
|
"rimraf": "2.6.1"
|
|
},
|
|
"babel": {
|
|
"plugins": [
|
|
"transform-async-to-generator"
|
|
]
|
|
},
|
|
"jest": {
|
|
"coverageDirectory": "./coverage",
|
|
"collectCoverage": true,
|
|
"collectCoverageFrom": [
|
|
"lib/**/*.js"
|
|
],
|
|
"coverageReporters": [
|
|
"json",
|
|
"lcov",
|
|
"text-summary"
|
|
],
|
|
"setupTestFrameworkScriptFile": "./test/chai.js"
|
|
},
|
|
"renovate": {
|
|
"labels": [
|
|
"ready"
|
|
],
|
|
"assignees": [
|
|
"rarkins"
|
|
]
|
|
}
|
|
}
|