renovate/package.json
Rhys Arkins 61c2cb9f79 8.20.0
2017-04-21 07:01:45 +02:00

98 lines
2.5 KiB
JSON

{
"name": "renovate",
"description": "Keep npm dependencies up-to-date via Pull Requests",
"version": "8.20.0",
"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 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.2",
"json-stringify-pretty-compact": "1.0.3",
"lodash": "4.17.4",
"registry-auth-token": "3.2.0",
"registry-url": "3.1.0",
"semver": "5.3.0",
"semver-stable": "2.0.4",
"semver-utils": "1.1.1",
"tmp": "0.0.31",
"winston": "2.3.1"
},
"devDependencies": {
"babel-cli": "6.24.1",
"babel-plugin-transform-async-to-generator": "6.24.1",
"chai": "3.5.0",
"eslint": "3.19.0",
"eslint-config-airbnb-base": "11.1.3",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-promise": "3.5.0",
"mkdirp": "0.5.1",
"np": "2.13.2",
"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"
]
}
}