renovate/package.json

119 lines
2.9 KiB
JSON
Raw Normal View History

2016-12-18 06:51:25 +00:00
{
2017-01-10 21:38:37 +00:00
"name": "renovate",
2017-01-11 13:45:00 +00:00
"description": "Keep npm dependencies up-to-date via Pull Requests",
2017-06-28 17:38:53 +00:00
"version": "8.47.0",
"bin": "dist/renovate.js",
2017-01-10 21:38:37 +00:00
"scripts": {
"build": "npm run transpile",
2017-01-17 13:30:25 +00:00
"heroku-push": "git push heroku master",
"heroku-scheduler": "heroku addons:open scheduler",
"jest": "LOG_LEVEL=fatal jest",
"lint-fix": "eslint --ignore-path .gitignore --fix .",
"lint": "eslint --ignore-path .gitignore .",
"np": "np",
"prepublish": "npm run build",
"start": "node dist/renovate",
2017-02-01 12:21:21 +00:00
"start-babel": "babel-node lib/renovate",
"start-raw": "node lib/renovate",
"test-dirty": "git diff --exit-code",
"test": "npm run lint && npm run jest",
"transpile": "rimraf dist && mkdirp dist && babel lib --out-dir dist",
"update-docs": "npm run transpile && bash bin/update-docs.sh"
2017-01-10 21:38:37 +00:00
},
"repository": {
"type": "git",
"url": "https://github.com/singapore/renovate.git"
},
"keywords": [
"npm",
"outdated",
"update"
],
2017-01-15 16:28:32 +00:00
"author": "Rhys Arkins <rhys@arkins.net>",
2017-01-11 08:49:24 +00:00
"license": "MIT",
2017-01-10 21:38:37 +00:00
"bugs": {
"url": "https://github.com/singapore/renovate/issues"
},
"homepage": "https://github.com/singapore/renovate#readme",
2017-01-11 18:32:45 +00:00
"engines": {
"node": ">=6.9.0",
2017-06-07 20:49:32 +00:00
"npm": "5",
2017-06-08 07:00:58 +00:00
"yarn": "0.24.6"
2017-01-11 18:32:45 +00:00
},
2016-12-18 06:51:25 +00:00
"dependencies": {
"bunyan": "1.8.10",
"chalk": "1.1.3",
"changelog": "1.3.0",
"commander": "2.10.0",
"gh-got": "6.0.0",
"github-url-from-git": "1.5.0",
"gl-got": "7.0.0",
"got": "7.0.0",
"handlebars": "4.0.10",
"ini": "1.3.4",
"json-stringify-pretty-compact": "1.0.4",
"jsonwebtoken": "7.4.1",
"lodash": "4.17.4",
"registry-auth-token": "3.3.1",
2017-01-29 21:26:43 +00:00
"registry-url": "3.1.0",
"root-require": "0.3.1",
Refactor to use GitHub API instead of git Closes #8, Closes #1 commit 02eefd2ec70bf8a07e667d13a4e33dc70dd9db96 Author: Rhys Arkins <rhys@keylocation.sg> Date: Wed Jan 4 18:25:30 2017 +0100 Refactor updates commit e9330e41a3388879ef300f40d8843210c70e2b31 Author: Rhys Arkins <rhys@keylocation.sg> Date: Wed Jan 4 18:25:17 2017 +0100 Improve commenting commit 2feb32f218a83ec765732280af8b0d9e569fb313 Author: Rhys Arkins <rhys@keylocation.sg> Date: Wed Jan 4 13:34:36 2017 +0100 Refactor token input commit 28b4428bae8cdafffe0227e794e8f77a5be2fcfd Author: Rhys Arkins <rhys@keylocation.sg> Date: Wed Jan 4 13:28:09 2017 +0100 Rename files commit 2fe98be1b31b27f625023ffb748f36c3a0eefee6 Author: Rhys Arkins <rhys@keylocation.sg> Date: Wed Jan 4 13:21:52 2017 +0100 Improve error log commit e6f0e691945e561c458147f52b02903ba82373d7 Author: Rhys Arkins <rhys@keylocation.sg> Date: Mon Dec 19 19:20:53 2016 +0100 Support custom package.json path commit 5f971746d3abe2a40b94cae3b8592ec97b21358e Author: Rhys Arkins <rhys@keylocation.sg> Date: Mon Dec 19 19:20:40 2016 +0100 Handle null dependencies or devDependencies commit 9eac59859626bc7d40cacb1e93e645973667208c Author: Rhys Arkins <rhys@keylocation.sg> Date: Mon Dec 19 18:23:14 2016 +0100 Split per branch commit 61d7337e813b86d186511fdb6ad0655b6110942f Author: Rhys Arkins <rhys@keylocation.sg> Date: Mon Dec 19 18:22:59 2016 +0100 Ignore unstable commit d4d8bcf0895046b5d13f8dea93dbb30121f9be7c Author: Rhys Arkins <rhys@keylocation.sg> Date: Mon Dec 19 18:22:10 2016 +0100 Pin commit 4b9306b8072726b2eed74a0f56a4687c865539a4 Author: Rhys Arkins <rhys@keylocation.sg> Date: Mon Dec 19 11:55:47 2016 +0100 Add new
2017-01-04 17:48:55 +00:00
"semver": "5.3.0",
"semver-stable": "2.0.4",
"semver-utils": "1.1.1",
"showdown": "1.7.1",
"tmp": "0.0.31",
"traverse": "0.6.6"
Add eslint Closes #17 commit 12d7e50a818720ff2c44e4e9475eef78a1dc0174 Author: Rhys Arkins <rhys@keylocation.sg> Date: Tue Jan 10 22:27:56 2017 +0100 Update eslintrc commit f583442dcdf7e3180d2da5464693df12f4419152 Author: Rhys Arkins <rhys@keylocation.sg> Date: Tue Jan 10 22:22:15 2017 +0100 Add eslint and config commit 59334f7a7311c451ef7aa4e0759d9c09686e86c6 Author: Rhys Arkins <rhys@keylocation.sg> Date: Tue Jan 10 22:20:24 2017 +0100 Refactor promise for linting commit 288f0e753a3d1e93f1b14e3e80692861fab0fff0 Author: Rhys Arkins <rhys@keylocation.sg> Date: Tue Jan 10 19:09:48 2017 +0100 Fix more promise lints commit 7f602a149c60da123bc010965ec8be78b3fa7ab1 Author: Rhys Arkins <rhys@keylocation.sg> Date: Tue Jan 10 18:30:18 2017 +0100 lint github promises commit dd6b78340e5a9c128e83aa87da8e3714e3947e82 Author: Rhys Arkins <rhys@keylocation.sg> Date: Tue Jan 10 18:30:10 2017 +0100 lint npm promises commit 5c48c159c7ab89999e7966d93c4b1c9f1179d95d Author: Rhys Arkins <rhys@keylocation.sg> Date: Tue Jan 10 15:25:13 2017 +0100 Lint packageJson helper commit b440eb83fccdc2c1afbd3e3b74c6798e35b3533f Author: Rhys Arkins <rhys@keylocation.sg> Date: Tue Jan 10 15:04:56 2017 +0100 Fix github helper lint commit 269c84a2be8a2e9cd495d4f90893eaaccd8a2156 Author: Rhys Arkins <rhys@keylocation.sg> Date: Tue Jan 10 15:00:48 2017 +0100 Fix typo commit 548ca6c31f3f4417995c65f4466d216a4918387e Author: Rhys Arkins <rhys@keylocation.sg> Date: Tue Jan 10 15:00:29 2017 +0100 Fix npm lint commit f8ea5d5b72745e7cbebad184f46fc3046f57a525 Author: Rhys Arkins <rhys@keylocation.sg> Date: Tue Jan 10 14:56:15 2017 +0100 lint defaults commit 6130092a57d37d62ed8f1274817ce81dfdae84bc Author: Rhys Arkins <rhys@keylocation.sg> Date: Tue Jan 10 14:52:16 2017 +0100 Finish index commit 9e2b6f5e02fad38904172b40811043a0caab879b Author: Rhys Arkins <rhys@keylocation.sg> Date: Tue Jan 10 14:40:06 2017 +0100 Fix string concatenation commit 47b7cdac3f0acc6588e403dff3cacfda27789472 Author: Rhys Arkins <rhys@keylocation.sg> Date: Tue Jan 10 14:38:23 2017 +0100 Fix arrow syntax commit 27b8db685f7ee66e914754fd578d421f39656397 Author: Rhys Arkins <rhys@keylocation.sg> Date: Tue Jan 10 14:29:10 2017 +0100 Refactor updateDependency commit 272f012583ac514709c81ffd7a68f50f0b4ed2b3 Author: Rhys Arkins <rhys@keylocation.sg> Date: Tue Jan 10 14:15:43 2017 +0100 Refactor ensureCommit commit 1e1ff56d6b94a8ef6a360213715563452a0957e8 Author: Rhys Arkins <rhys@keylocation.sg> Date: Tue Jan 10 13:54:02 2017 +0100 Refactor ensurePr
2017-01-10 21:28:22 +00:00
},
"devDependencies": {
"babel-cli": "6.24.1",
"babel-jest": "20.0.3",
2017-06-04 20:11:54 +00:00
"babel-plugin-transform-async-to-generator": "6.24.1",
"chai": "4.0.2",
"eslint": "3.19.0",
"eslint-config-airbnb-base": "11.2.0",
"eslint-config-prettier": "2.2.0",
"eslint-plugin-import": "2.6.0",
"eslint-plugin-prettier": "2.1.2",
"eslint-plugin-promise": "3.5.0",
"jest": "20.0.4",
"mkdirp": "0.5.1",
"np": "2.16.0",
"prettier": "1.5.2",
"rimraf": "2.6.1"
},
"babel": {
"plugins": [
"transform-async-to-generator"
]
2017-01-22 15:17:06 +00:00
},
"jest": {
"coverageDirectory": "./coverage",
"collectCoverage": true,
"collectCoverageFrom": [
"lib/**/*.js"
],
"coverageReporters": [
"json",
"lcov",
"text-summary"
],
"setupTestFrameworkScriptFile": "./test/chai.js"
},
2017-01-22 15:17:06 +00:00
"renovate": {
2017-01-28 07:25:06 +00:00
"labels": [
"ready"
],
"assignees": [
"rarkins"
2017-06-01 04:23:56 +00:00
],
"automerge": "minor",
2017-06-07 20:54:31 +00:00
"rebaseStalePrs": true,
"packages": [
{
2017-06-04 20:11:54 +00:00
"packagePattern": "jest",
"groupName": "jest"
}
]
2016-12-18 06:51:25 +00:00
}
}