Skip to content
Snippets Groups Projects
package.json 9.08 KiB
Newer Older
ewnd9's avatar
ewnd9 committed
{
Rhys Arkins's avatar
Rhys Arkins committed
  "name": "renovate",
  "description": "Automated dependency updates. Flexible so you don't need to be.",
  "version": "0.0.0-semantic-release",
    "renovate": "dist/renovate.js",
    "renovate-config-validator": "dist/config-validator.js"
Rhys Arkins's avatar
Rhys Arkins committed
  "scripts": {
    "build": "run-s clean generate:* compile:*",
    "clean": "rimraf dist",
    "clean-cache": "node bin/clean-cache.js",
    "compile:ts": "tsc -p tsconfig.app.json",
    "compile:dts": "tsc -p tsconfig.dts.json",
    "generate": "run-s generate:*",
    "generate:imports": "node tmp/tools/generate-imports.js",
    "create-json-schema": "babel-node --extensions \".ts,.js\" -- bin/create-json-schema.js && prettier --write \"renovate-schema.json\"",
    "debug": "babel-node --inspect-brk  --extensions \".ts,.js\" -- lib/renovate.ts",
    "eslint": "eslint --ext .js,.mjs,.ts lib/ test/ tools/",
    "eslint-fix": "eslint --ext .js,.mjs,.ts --fix lib/ test/ tools/",
    "jest": "cross-env NODE_ENV=test LOG_LEVEL=fatal node --expose-gc node_modules/jest/bin/jest.js",
    "jest-debug": "cross-env NODE_ENV=test LOG_LEVEL=fatal node --expose-gc --inspect-brk node_modules/jest/bin/jest.js",
    "jest-silent": "cross-env NODE_ENV=test yarn jest --reporters jest-silent-reporter",
    "lint": "run-s eslint prettier",
    "lint-fix": "run-s eslint-fix prettier-fix",
    "prepare": "run-s prepare:*",
    "prepare:tools": "tsc -p tools",
    "prepare:re2": "node --experimental-modules tools/check-re2.mjs",
    "prepare:generate": "run-s generate:*",
    "prestart": "run-s generate:* ",
    "pretest": "run-s generate:* ",
    "prettier": "prettier --list-different \"**/*.{ts,js,mjs,json,md}\"",
    "prettier-fix": "prettier --write \"**/*.{ts,js,mjs,json,md}\"",
    "release": "node --experimental-modules tools/release.mjs",
    "start": "babel-node --extensions \".ts,.js\" -- lib/renovate.ts",
    "test-dirty": "git diff --exit-code",
    "test-e2e": "npm pack && cd test/e2e && yarn install --no-lockfile --ignore-optional --prod && yarn test",
    "test-schema": "babel-node --extensions \".ts,.js\" -- test/json-schema.ts",
    "test": "run-s lint test-schema type-check jest",
    "type-check": "run-s generate:* \"tsc --noEmit {@}\"",
    "verify": "node --experimental-modules tools/verify.mjs"
Rhys Arkins's avatar
Rhys Arkins committed
  },
  "repository": {
    "type": "git",
Rhys Arkins's avatar
Rhys Arkins committed
  },
  "keywords": [
Rhys Arkins's avatar
Rhys Arkins committed
    "bazel",
    "bitbucket",
    "buildkite",
    "dependencies",
    "dependency",
    "docker",
Rhys Arkins's avatar
Rhys Arkins committed
    "github",
    "gitlab",
    "management",
    "meteor",
    "node",
Rhys Arkins's avatar
Rhys Arkins committed
    "npm",
    "outdated",
Rhys Arkins's avatar
Rhys Arkins committed
    "php",
    "python",
Rhys Arkins's avatar
Rhys Arkins committed
  ],
Rhys Arkins's avatar
Rhys Arkins committed
  "author": "Rhys Arkins <rhys@arkins.net>",
JYC's avatar
JYC committed
  "contributors": [
Rhys Arkins's avatar
Rhys Arkins committed
    "Andreas Bexelius <andreas.brostrom@nordnet.se>",
    "Ayoub Kaanich <kayoub5@live.com>",
    "Dragomir Țurcanu <dragomirt22@gmail.com>",
    "Filip Stenbeck <filip.stenbeck@gmail.com>",
Rhys Arkins's avatar
Rhys Arkins committed
    "Hutson Betts <hutson@hyper-expanse.net>",
    "IKEDA Sho <suicaicoca@gmail.com>",
    "Israel Bethencourt <ieb.core@gmail.com>",
Rhys Arkins's avatar
Rhys Arkins committed
    "James King <james@jamesking56.uk>",
    "Jamie Magee <jamie.magee@gmail.com>",
    "Jan Sauer <jan@jansauer.de>",
    "Jean-Yves Couët <jycouet@gmail.com>",
    "Kevin James <KevinJames@thekev.in>",
Rhys Arkins's avatar
Rhys Arkins committed
    "Klaus Meinhardt <klaus.meinhardt1@gmail.com>",
    "Matt Lavin <matt.lavin@gmail.com>",
    "Maximilian Gaß <mxey@mxey.net>",
Rhys Arkins's avatar
Rhys Arkins committed
    "Michael Elufimov <elufimov@gmail.com>",
    "Michael Kriese <michael.kriese@visualon.de>",
    "Mike Bryant <mike@mikebryant.me.uk>",
    "Nicolas Byl <nico@nicolas-byl.eu>",
    "Pravesh Tora <pravesh.tora@gmail.com>",
    "Rishabh Jain <contact@rishabh1403.com>",
    "Ryan Murfitt <rmurfitt@gmail.com>",
Rhys Arkins's avatar
Rhys Arkins committed
    "Sam Bull <lsb@pocketuniverse.ca>",
    "Sam Neirinck <sam@samneirinck.com>",
    "Sourav Das <souravdasslg95@gmail.com>",
Rhys Arkins's avatar
Rhys Arkins committed
    "Tanuel <tanuel.mategi@gmail.com>",
    "Viral Ruparel <viralruparel@gmail.com>",
    "Vladimir Starkov <iamstarkov@gmail.com>",
    "Mikhail Yakushin <driver733@gmail.com>",
    "Sebastian Poxhofer <sebastian@poxhofer.at>",
    "Henry Sachs <henrysachs@gmail.com>"
JYC's avatar
JYC committed
  ],
  "license": "AGPL-3.0",
Rhys Arkins's avatar
Rhys Arkins committed
  "bugs": {
Rhys Arkins's avatar
Rhys Arkins committed
  },
Rhys Arkins's avatar
Rhys Arkins committed
  "engines": {
    "node": "^12.13.0 || >=14.15.0",
    "yarn": "^1.17.0"
Rhys Arkins's avatar
Rhys Arkins committed
  },
ewnd9's avatar
ewnd9 committed
  "dependencies": {
Rhys Arkins's avatar
Rhys Arkins committed
  },
  "optionalDependencies": {
Rhys Arkins's avatar
Rhys Arkins committed
  "devDependencies": {
Rhys Arkins's avatar
Rhys Arkins committed
  },
Rhys Arkins's avatar
Rhys Arkins committed
  "resolutions": {
    "jest-silent-reporter/jest-util": ">=25.1.0",
    "jest-junit/jest-validate": ">=25.1.0",
    "**/acorn": ">=6.4.1 <7.0.0 || >=7.1.1",
    "**/kind-of": ">=6.0.3",
    "**/lock-verify/@iarna/cli": ">=2"
Rhys Arkins's avatar
Rhys Arkins committed
  },
    "dist"
    "tag": "latest"
Rhys Arkins's avatar
Rhys Arkins committed
  "husky": {
    "hooks": {
      "pre-commit": "pretty-quick --staged"
    }
ewnd9's avatar
ewnd9 committed
  }
}