Skip to content

Commit

Permalink
fix: Add repostiory field to package.json files
Browse files Browse the repository at this point in the history
  • Loading branch information
charud committed Jul 17, 2019
1 parent 2c25235 commit fccd2db
Show file tree
Hide file tree
Showing 7 changed files with 28 additions and 0 deletions.
4 changes: 4 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
"name": "@spotify/web-scripts-monorepo",
"private": true,
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/spotify/web-scripts.git"
},
"scripts": {
"test": "lerna run test --stream",
"build": "lerna run build --stream",
Expand Down
4 changes: 4 additions & 0 deletions packages/eslint-config-base/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@
"peerDependencies": {
"eslint": ">=5.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/spotify/web-scripts.git"
},
"publishConfig": {
"access": "public"
},
Expand Down
4 changes: 4 additions & 0 deletions packages/eslint-config-react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
"version": "1.1.0",
"license": "Apache-2.0",
"description": "Spotify's ESLint config for React projects",
"repository": {
"type": "git",
"url": "git+https://github.com/spotify/web-scripts.git"
},
"main": "index.js",
"devDependencies": {
"eslint": "^5.16.0",
Expand Down
4 changes: 4 additions & 0 deletions packages/eslint-config-typescript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@
"@typescript-eslint/parser": "^1.11.0",
"eslint": "^5.16.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/spotify/web-scripts.git"
},
"peerDependencies": {
"@typescript-eslint/eslint-plugin": ">=1.5 <2",
"@typescript-eslint/parser": ">=1.5 <2",
Expand Down
4 changes: 4 additions & 0 deletions packages/prettier-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
"version": "1.1.0",
"license": "Apache-2.0",
"description": "Spotify's base Prettier config",
"repository": {
"type": "git",
"url": "git+https://github.com/spotify/web-scripts.git"
},
"main": "index.js",
"devDependencies": {
"prettier": "^1.18.2"
Expand Down
4 changes: 4 additions & 0 deletions packages/tsconfig/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
"version": "1.1.0",
"license": "Apache-2.0",
"description": "Common tsconfigs to be used as your base configurations",
"repository": {
"type": "git",
"url": "git+https://github.com/spotify/web-scripts.git"
},
"files": [
"tsconfig.*.json"
],
Expand Down
4 changes: 4 additions & 0 deletions packages/web-scripts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
"version": "1.1.0",
"license": "Apache-2.0",
"description": "Build, lint, test, format, and release your JS/TS library.",
"repository": {
"type": "git",
"url": "git+https://github.com/spotify/web-scripts.git"
},
"main": "cjs/index.js",
"module": "esm/index.js",
"types": "types",
Expand Down

0 comments on commit fccd2db

Please sign in to comment.