Created
June 20, 2018 22:36
-
-
Save reggi/75f8f8e44077b76cee3e18f8178b2f6f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": "abide", | |
| "version": "1.0.0", | |
| "description": "Collection of modules", | |
| "keywords": [], | |
| "license": "ISC", | |
| "author": "", | |
| "main": "index.js", | |
| "scripts": { | |
| "babel": "NODE_ENV=production lerna exec --parallel --bail=false -- npm run babel", | |
| "babel-compare": "results -- monorepo-babel-cli --compare", | |
| "babel:root-config": "node ./packages/monorepo-root-babel-cli/index.build.js --output", | |
| "babel:watch": "NODE_ENV=production lerna exec --parallel -- npm run babel:watch", | |
| "build": "npm run babel", | |
| "depcheck": "lerna exec -- results -di -- depcheck ./ --ignores 'jest,standard,babel-eslint,babel-cli,babel-jest'", | |
| "jest": "jest --coverage --runInBand", | |
| "jest-series": "lerna exec -- \"bash ../../script.sh\"", | |
| "jest-requireable": "results -i -- jest --projects=./packages/requireable --coverage --no-cache --runInBand --detectOpenHandles", | |
| "cleanup": "here --cleanCoverage", | |
| "monorepo-dep-lint": "monorepo-dep-lint -f", | |
| "shebang-check": "lerna exec -- results -- shebang-check", | |
| "sort-package-json": "sort-package-json && lerna exec -- sort-package-json", | |
| "standard": "standard", | |
| "update": "npm i ./packages/*" | |
| }, | |
| "babel": { | |
| "env": { | |
| "test": { | |
| "plugins": [ | |
| "rewire" | |
| ] | |
| } | |
| }, | |
| "plugins": [ | |
| "transform-object-rest-spread", | |
| "transform-runtime" | |
| ], | |
| "presets": [ | |
| [ | |
| "env", | |
| { | |
| "targets": { | |
| "node": "4" | |
| } | |
| } | |
| ] | |
| ] | |
| }, | |
| "jest": { | |
| "collectCoverage": true, | |
| "coveragePathIgnorePatterns": [ | |
| "<rootDir>/unpublished/.+", | |
| "<rootDir>/packages/.+/examples/.+", | |
| ".+build.js", | |
| "<rootDir>packages/pkg-plugin-prop/index.build.js" | |
| ], | |
| "coverageReporters": [ | |
| "html", | |
| "text" | |
| ], | |
| "coverageThreshold": { | |
| "global": { | |
| "branches": 100, | |
| "functions": 100, | |
| "lines": 100, | |
| "statements": 100 | |
| } | |
| }, | |
| "modulePathIgnorePatterns": [ | |
| "<rootDir>/unpublished/.+", | |
| "<rootDir>/packages/.+/examples/.+", | |
| ".+build.js" | |
| ], | |
| "projects": [ | |
| "<rootDir>/packages/.+" | |
| ], | |
| "testPathIgnorePatterns": [ | |
| "<rootDir>/unpublished/.+", | |
| "<rootDir>/packages/.+/examples/.+", | |
| ".+build.js" | |
| ], | |
| "watchPathIgnorePatterns": [ | |
| "<rootDir>/unpublished/.+", | |
| "<rootDir>/packages/.+/examples/.+", | |
| ".+build.js" | |
| ] | |
| }, | |
| "dependencies": { | |
| "@reggi/command": "file:packages/command", | |
| "@reggi/command-plus": "file:packages/command-plus", | |
| "@reggi/dep-merge": "file:packages/dep-merge", | |
| "@reggi/dep-merge-cli": "file:packages/dep-merge-cli", | |
| "@reggi/dep-pointer": "file:packages/dep-pointer", | |
| "@reggi/dep-pointer-cli": "file:packages/dep-pointer-cli", | |
| "@reggi/gitpkg.traverse-up": "file:packages/gitpkg.traverse-up", | |
| "@reggi/gitpkg.upsert": "file:packages/gitpkg.upsert", | |
| "@reggi/help": "file:packages/help", | |
| "@reggi/help.filter-until": "file:packages/help.filter-until", | |
| "@reggi/help.parse-argv": "file:packages/help.parse-argv", | |
| "@reggi/help.set-entire": "file:packages/help.set-entire", | |
| "@reggi/help.string-argv": "file:packages/help.string-argv", | |
| "@reggi/here": "file:packages/here", | |
| "@reggi/journey": "file:packages/journey", | |
| "@reggi/journey.coerce-to-array": "file:packages/journey.coerce-to-array", | |
| "@reggi/journey.coerce-to-plain-object": "file:packages/journey.coerce-to-plain-object", | |
| "@reggi/journey.fn-free": "file:packages/journey.fn-free", | |
| "@reggi/journey.fn-reduce": "file:packages/journey.fn-reduce", | |
| "@reggi/journey.is-promise": "file:packages/journey.is-promise", | |
| "@reggi/journey.pass-thru": "file:packages/journey.pass-thru", | |
| "@reggi/lerna.paths": "file:packages/lerna.paths", | |
| "@reggi/lerna.utils": "file:packages/lerna.utils", | |
| "@reggi/monorepo-babel-cli": "file:packages/monorepo-babel-cli", | |
| "@reggi/monorepo-dep-lint-cli": "file:packages/monorepo-dep-lint-cli", | |
| "@reggi/pkg": "file:packages/pkg", | |
| "@reggi/pkg-cli": "file:packages/pkg-cli", | |
| "@reggi/pkg-plugin-babel-6-to-node-4": "file:packages/pkg-plugin-babel-6-to-node-4", | |
| "@reggi/pkg-plugin-babel-7-to-node-4": "file:packages/pkg-plugin-babel-7-to-node-4", | |
| "@reggi/pkg-plugin-cobalt": "file:packages/pkg-plugin-cobalt", | |
| "@reggi/pkg-plugin-jest": "file:packages/pkg-plugin-jest", | |
| "@reggi/pkg-plugin-name-dir": "file:packages/pkg-plugin-name-dir", | |
| "@reggi/pkg-plugin-name-scope": "file:packages/pkg-plugin-name-scope", | |
| "@reggi/pkg-plugin-prop": "file:packages/pkg-plugin-prop", | |
| "@reggi/pkg-plugin-sort": "file:packages/pkg-plugin-sort", | |
| "@reggi/pkg-plugin-standard": "file:packages/pkg-plugin-standard", | |
| "@reggi/pkg.file-exists": "file:packages/pkg.file-exists", | |
| "@reggi/pkg.fs": "file:packages/pkg.fs", | |
| "@reggi/pkg.is-local-module": "file:packages/pkg.is-local-module", | |
| "@reggi/pkg.json-parse": "file:packages/pkg.json-parse", | |
| "@reggi/pkg.pretty-json": "file:packages/pkg.pretty-json", | |
| "@reggi/pkg.prop-overwrite": "file:packages/pkg.prop-overwrite", | |
| "@reggi/pkg.read-json": "file:packages/pkg.read-json", | |
| "@reggi/pkg.throw-error": "file:packages/pkg.throw-error", | |
| "@reggi/pkgprop": "file:packages/pkgprop", | |
| "@reggi/pkgprop-cli": "file:packages/pkgprop-cli", | |
| "@reggi/requireable": "file:packages/requireable", | |
| "@reggi/requireable-cli": "file:packages/requireable-cli", | |
| "@reggi/shebang-check": "file:packages/shebang-check", | |
| "@reggi/shebang-check-cli": "file:packages/shebang-check-cli", | |
| "@reggi/subrepo": "file:packages/subrepo", | |
| "@reggi/subrepo-cli": "file:packages/subrepo-cli", | |
| "reggi-cli": "file:packages/reggi-cli", | |
| "replace-cli": "file:packages/replace-cli", | |
| "results-cli": "file:packages/results-cli" | |
| }, | |
| "devDependencies": { | |
| "babel-cli": "^6.26.0", | |
| "babel-eslint": "^8.2.3", | |
| "babel-jest": "^22.4.1", | |
| "babel-plugin-rewire": "^1.1.0", | |
| "babel-plugin-transform-object-rest-spread": "^6.26.0", | |
| "babel-plugin-transform-runtime": "^6.23.0", | |
| "babel-preset-env": "^1.6.1", | |
| "bluebird": "^3.5.1", | |
| "depcheck": "^0.6.9", | |
| "execa": "^0.10.0", | |
| "fs-extra": "^6.0.1", | |
| "istanbul": "^0.4.5", | |
| "jest": "^23.1.0", | |
| "lerna": "^2.11.0", | |
| "link-parent-bin": "^0.1.3", | |
| "lodash": "^4.17.10", | |
| "mock-fs": "^4.4.2", | |
| "mz": "^2.7.0", | |
| "npm-run-all": "^4.1.3", | |
| "sinon": "^5.1.0", | |
| "sort-package-json": "^1.12.0", | |
| "standard": "^11.0.0", | |
| "weak": "^1.0.1" | |
| }, | |
| "standard": { | |
| "parser": "babel-eslint", | |
| "ignore": [ | |
| "coverage", | |
| "index.build.js", | |
| "unpublished" | |
| ], | |
| "globals": [ | |
| "beforeAll", | |
| "afterAll", | |
| "expect", | |
| "test", | |
| "beforeEach", | |
| "afterEach", | |
| "it", | |
| "jest" | |
| ] | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment