Skip to content

Commit

Permalink
馃Ч Clean up package.json files (#686)
Browse files Browse the repository at this point in the history
  • Loading branch information
Wil Wilsman committed Dec 17, 2021
1 parent 6822cc8 commit 0da8687
Show file tree
Hide file tree
Showing 9 changed files with 91 additions and 520 deletions.
11 changes: 5 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "https://github.com/percy/cli"
},
"scripts": {
"build": "lerna run build --stream",
"build:watch": "lerna run build --stream -- --watch",
Expand All @@ -13,7 +17,7 @@
"readme": "lerna run --parallel readme",
"postinstall": "lerna run --stream postinstall",
"test": "lerna run --stream --concurrency=1 test",
"test:coverage": "lerna run --stream --concurrency=1 test:coverage",
"test:coverage": "lerna run --stream --concurrency=1 --no-bail test:coverage",
"test:types": "lerna run --parallel test:types"
},
"devDependencies": {
Expand All @@ -23,7 +27,6 @@
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"@babel/register": "^7.11.5",
"@oclif/dev-cli": "^1.22.2",
"@rollup/plugin-alias": "^3.1.3",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-commonjs": "^21.0.0",
Expand Down Expand Up @@ -52,9 +55,5 @@
"nyc": "^15.1.0",
"rollup": "^2.53.2",
"tsd": "^0.19.0"
},
"repository": {
"type": "git",
"url": "https://github.com/percy/cli"
}
}
20 changes: 10 additions & 10 deletions packages/client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@
"name": "@percy/client",
"version": "1.0.0-beta.71",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/percy/cli",
"directory": "packages/client"
},
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"files": [
"dist",
Expand All @@ -16,19 +24,11 @@
"test": "node ../../scripts/test",
"test:coverage": "yarn test --coverage"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"mock-require": "^3.0.3"
},
"dependencies": {
"@percy/env": "1.0.0-beta.71",
"@percy/logger": "1.0.0-beta.71"
},
"repository": {
"type": "git",
"url": "https://github.com/percy/cli",
"directory": "packages/client"
"devDependencies": {
"mock-require": "^3.0.3"
}
}
16 changes: 8 additions & 8 deletions packages/config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@
"name": "@percy/config",
"version": "1.0.0-beta.71",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/percy/cli",
"directory": "packages/config"
},
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"types": "types/index.d.ts",
"files": [
Expand All @@ -18,9 +26,6 @@
"test:coverage": "yarn test --coverage",
"test:types": "tsd"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@percy/logger": "1.0.0-beta.71",
"ajv": "^8.6.2",
Expand All @@ -29,10 +34,5 @@
},
"devDependencies": {
"json-schema-typed": "^7.0.3"
},
"repository": {
"type": "git",
"url": "https://github.com/percy/cli",
"directory": "packages/config"
}
}
16 changes: 8 additions & 8 deletions packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@
"name": "@percy/core",
"version": "1.0.0-beta.71",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/percy/cli",
"directory": "packages/core"
},
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"types": "types/index.d.ts",
"files": [
Expand All @@ -21,9 +29,6 @@
"test:coverage": "yarn test --coverage",
"test:types": "tsd"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@percy/client": "1.0.0-beta.71",
"@percy/config": "1.0.0-beta.71",
Expand All @@ -33,10 +38,5 @@
"extract-zip": "^2.0.1",
"rimraf": "^3.0.2",
"ws": "^8.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/percy/cli",
"directory": "packages/core"
}
}
16 changes: 8 additions & 8 deletions packages/dom/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@
"name": "@percy/dom",
"version": "1.0.0-beta.71",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/percy/cli",
"directory": "packages/dom"
},
"publishConfig": {
"access": "public"
},
"main": "dist/bundle.js",
"browser": "dist/bundle.js",
"files": [
Expand All @@ -13,9 +21,6 @@
"test": "node ../../scripts/test",
"test:coverage": "yarn test --coverage"
},
"publishConfig": {
"access": "public"
},
"rollup": {
"output": {
"name": "PercyDOM"
Expand All @@ -28,10 +33,5 @@
},
"devDependencies": {
"interactor.js": "^2.0.0-beta.10"
},
"repository": {
"type": "git",
"url": "https://github.com/percy/cli",
"directory": "packages/dom"
}
}
16 changes: 8 additions & 8 deletions packages/env/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@
"name": "@percy/env",
"version": "1.0.0-beta.71",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/percy/cli",
"directory": "packages/env"
},
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"files": [
"dist"
Expand All @@ -15,15 +23,7 @@
"test": "node ../../scripts/test",
"test:coverage": "yarn test --coverage"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"mock-require": "^3.0.3"
},
"repository": {
"type": "git",
"url": "https://github.com/percy/cli",
"directory": "packages/env"
}
}
16 changes: 8 additions & 8 deletions packages/logger/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@
"name": "@percy/logger",
"version": "1.0.0-beta.71",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/percy/cli",
"directory": "packages/logger"
},
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"browser": "dist/bundle.js",
"files": [
Expand All @@ -18,17 +26,9 @@
"test": "node ../../scripts/test",
"test:coverage": "yarn test --coverage"
},
"publishConfig": {
"access": "public"
},
"rollup": {
"output": {
"name": "PercyLogger"
}
},
"repository": {
"type": "git",
"url": "https://github.com/percy/cli",
"directory": "packages/logger"
}
}
16 changes: 8 additions & 8 deletions packages/sdk-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@
"name": "@percy/sdk-utils",
"version": "1.0.0-beta.71",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/percy/cli",
"directory": "packages/sdk-utils"
},
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"browser": "dist/bundle.js",
"files": [
Expand All @@ -19,9 +27,6 @@
"test": "node ../../scripts/test",
"test:coverage": "yarn test --coverage"
},
"publishConfig": {
"access": "public"
},
"karma": {
"run_start": "node test/server start &",
"run_complete": "node test/server stop"
Expand All @@ -47,10 +52,5 @@
},
"dependencies": {
"@percy/logger": "1.0.0-beta.71"
},
"repository": {
"type": "git",
"url": "https://github.com/percy/cli",
"directory": "packages/sdk-utils"
}
}

0 comments on commit 0da8687

Please sign in to comment.