Skip to content

Commit

Permalink
Clean up test package dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ai committed Jan 19, 2022
1 parent f248c8c commit edf66bf
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 88 deletions.
12 changes: 4 additions & 8 deletions test/clean-package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,12 @@
{
"private": true,
"scripts": {
"publish": "yarn build-clean && yarn build && lerna publish --silent",
"postinstall": "opencollective postinstall && yarn build"
"publish": "yarn build-clean && yarn build",
"postinstall": "yarn build"
},
"workspaces": [
"packages/*",
"website",
"examples/*"
],
"workspaces": ["packages/*", "website", "examples/*"],
"dependencies": {
"opencollective": "^1.0.3"
"nanoevents": "^6.0.2"
},
"collective": {
"type": "opencollective",
Expand Down
86 changes: 6 additions & 80 deletions test/package/package.json
Original file line number Diff line number Diff line change
@@ -1,81 +1,7 @@
{
"private": true,
"devDependencies": {
"ansi-regex": "^6.0.1",
"ansi-styles": "^3.2.0",
"babel-core": "^6.23.1",
"babel-eslint": "^8.2.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-syntax-trailing-function-commas": "^6.13.0",
"babel-plugin-transform-async-to-generator": "^6.16.0",
"babel-plugin-transform-es2015-destructuring": "^6.23.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-es2015-parameters": "^6.23.0",
"babel-plugin-transform-es2015-shorthand-properties": "^6.24.1",
"babel-plugin-transform-es2015-spread": "^6.22.0",
"babel-plugin-transform-flow-strip-types": "^6.18.0",
"babel-plugin-transform-inline-imports-commonjs": "^1.2.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-plugin-transform-strict-mode": "^6.24.1",
"babel-preset-env": "^1.4.0",
"babel-preset-react": "^6.24.1",
"babel-preset-react-native": "^4.0.0",
"babel-register": "^6.26.0",
"browserify": "^16.1.0",
"chalk": "^2.0.1",
"codecov": "^3.0.0",
"debug": "^3.0.1",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-flowtype": "^2.35.0",
"eslint-plugin-import": "^2.6.0",
"eslint-plugin-jest": "^21.0.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-markdown": "^1.0.0-beta.6",
"eslint-plugin-prettier": "^2.3.1",
"eslint-plugin-react": "^7.1.0",
"eslint-plugin-relay": "~0.0.19",
"execa": "^0.10.0",
"flow-bin": "^0.75.0",
"glob": "^7.1.1",
"graceful-fs": "^4.1.11",
"istanbul-api": "^1.3.1",
"istanbul-lib-coverage": "^1.0.0",
"jasmine-reporters": "^2.2.0",
"jest-junit": "^5.1.0",
"jest-simple-dot-reporter": "^1.0.2",
"jquery": "^3.2.1",
"karma": "^2.0.0",
"karma-browserify": "^5.1.1",
"karma-chrome-launcher": "^2.1.1",
"karma-mocha": "^1.3.0",
"left-pad": "^1.1.1",
"lerna": "2.11.0",
"micromatch": "^2.3.11",
"mkdirp": "^0.5.1",
"mocha": "^5.0.1",
"mock-fs": "^4.4.1",
"prettier": "^1.13.3",
"prettylint": "^1.0.0",
"progress": "^2.0.0",
"readable-stream": "^2.3.6",
"regenerator-runtime": "^0.11.0",
"resolve": "^1.4.0",
"rimraf": "^2.6.2",
"rollup": "^0.56.2",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^8.2.1",
"rollup-plugin-flow": "^1.1.1",
"rollup-plugin-json": "^2.1.1",
"rollup-plugin-node-builtins": "^2.1.1",
"rollup-plugin-node-globals": "^1.1.0",
"rollup-plugin-node-resolve": "^3.0.0",
"slash": "^1.0.0",
"string-length": "^2.0.0",
"strip-ansi": "^4.0.0",
"typescript": "^2.2.2",
"watchify": "^3.9.0"
"nanoid": "^3.2.0"
},
"scripts": {
"build-clean": "rm -rf ./packages/*/build ./packages/*/build-es5",
Expand All @@ -87,8 +13,8 @@
"lint-es5-build": "eslint --no-eslintrc --no-ignore --env=browser packages/*/build-es5",
"lint:md": "yarn --silent lint:md:ci --fix",
"lint:md:ci": "prettylint '**/*.md' --ignore-path .gitignore",
"postinstall": "opencollective postinstall && yarn build",
"publish": "yarn build-clean && yarn build && lerna publish --silent",
"postinstall": "yarn build",
"publish": "yarn build-clean && yarn build",
"test-ci-es5-build-in-browser": "karma start --single-run",
"test-ci": "yarn jest-coverage -i --reporters jest-simple-dot-reporter jest-junit && yarn test-leak && node scripts/mapCoverage.js && codecov",
"test-ci-partial": "yarn jest -i --reporters jest-simple-dot-reporter jest-junit",
Expand Down Expand Up @@ -167,9 +93,6 @@
"singleQuote": true,
"trailingComma": "all"
},
"dependencies": {
"opencollective": "^1.0.3"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/jest",
Expand All @@ -183,5 +106,8 @@
},
"publishConfig": {
"exports": "./dist/index.js"
},
"dependencies": {
"nanoevents": "^6.0.2"
}
}
24 changes: 24 additions & 0 deletions test/package/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit edf66bf

Please sign in to comment.