Skip to content

Commit 7030e9c

Browse files
committed
Move package.jsons to @atlaskit scope
1 parent 8ef7a6d commit 7030e9c

File tree

5 files changed

+30
-15
lines changed

5 files changed

+30
-15
lines changed

packages/babel-plugin-extract-react-types/package.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "babel-plugin-extract-react-types",
2+
"name": "@atlaskit/babel-plugin-extract-react-types",
33
"version": "0.2.0",
44
"main": "index.js",
55
"license": "MIT",
@@ -17,13 +17,16 @@
1717
],
1818
"author": "Mitchell Hamilton",
1919
"dependencies": {
20-
"extract-react-types": "^0.30.0"
20+
"@atlaskit/extract-react-types": "^0.30.0"
2121
},
2222
"devDependencies": {
2323
"@babel/core": "^7.4.4",
2424
"@babel/plugin-syntax-flow": "^7.2.0",
2525
"@babel/plugin-syntax-jsx": "^7.2.0",
2626
"@babel/plugin-syntax-typescript": "^7.2.0",
2727
"jest-in-case": "^1.0.2"
28+
},
29+
"publishConfig": {
30+
"registry": "https://packages.atlassian.com/api/npm/npm-public/"
2831
}
2932
}

packages/extract-react-types-loader/package.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "extract-react-types-loader",
2+
"name": "@atlaskit/extract-react-types-loader",
33
"version": "1.0.0",
44
"main": "index.js",
55
"repository": "atlassian/extract-react-types",
@@ -14,6 +14,9 @@
1414
"documentation"
1515
],
1616
"dependencies": {
17-
"extract-react-types": "^0.30.0"
17+
"@atlaskit/extract-react-types": "^0.30.0"
18+
},
19+
"publishConfig": {
20+
"registry": "https://packages.atlassian.com/api/npm/npm-public/"
1821
}
1922
}

packages/extract-react-types/package.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"name": "extract-react-types",
2+
"name": "@atlaskit/extract-react-types",
33
"version": "0.30.4",
4-
"main": "dist/extract-react-types.cjs.js",
4+
"main": "dist/atlaskit-extract-react-types.cjs.js",
55
"repository": "atlassian/extract-react-types",
66
"description": "Parse prop-types from react components using typescript or flow",
77
"author": "James Kyle <[email protected]>",
@@ -43,5 +43,8 @@
4343
"flow-bin": "^0.98.0",
4444
"jest": "^27.0.0",
4545
"prettier": "^1.13.7"
46+
},
47+
"publishConfig": {
48+
"registry": "https://packages.atlassian.com/api/npm/npm-public/"
4649
}
4750
}

packages/kind2string/package.json

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"name": "kind2string",
2+
"name": "@atlaskit/kind2string",
33
"version": "0.8.1",
4-
"main": "dist/kind2string.cjs.js",
5-
"module": "dist/kind2string.esm.js",
4+
"main": "dist/atlaskit-kind2string.cjs.js",
5+
"module": "dist/atlaskit-kind2string.esm.js",
66
"license": "MIT",
77
"author": "Atlassian",
88
"repository": "atlassian/extract-react-types",
@@ -12,9 +12,12 @@
1212
],
1313
"devDependencies": {
1414
"babel-jest": "^27.0.0",
15-
"extract-react-types": "^0.30.0"
15+
"@atlaskit/extract-react-types": "^0.30.0"
1616
},
1717
"dependencies": {
1818
"@babel/runtime": "^7.4.4"
19+
},
20+
"publishConfig": {
21+
"registry": "https://packages.atlassian.com/api/npm/npm-public/"
1922
}
2023
}
Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
2-
"name": "pretty-proptypes",
2+
"name": "@atlaskit/pretty-proptypes",
33
"version": "1.7.1",
44
"description": "prettily render prop types from react components",
55
"repository": "atlassian/extract-react-types",
6-
"main": "dist/pretty-proptypes.cjs.js",
7-
"module": "dist/pretty-proptypes.esm.js",
6+
"main": "dist/atlaskit-pretty-proptypes.cjs.js",
7+
"module": "dist/atlaskit-pretty-proptypes.esm.js",
88
"keywords": [
99
"extract-react-types",
1010
"react",
@@ -16,20 +16,23 @@
1616
"dependencies": {
1717
"@babel/runtime": "^7.4.4",
1818
"@emotion/core": "^10.0.14",
19-
"kind2string": "^0.8.1",
19+
"@atlaskit/kind2string": "^0.8.1",
2020
"react-markings": "^1.2.0"
2121
},
2222
"files": [
2323
"dist"
2424
],
2525
"devDependencies": {
26-
"extract-react-types": "^0.30.0",
26+
"@atlaskit/extract-react-types": "^0.30.0",
2727
"jsdom": "^26.1.0",
2828
"react": "^16.3.1",
2929
"react-addons-test-utils": "^15.6.2",
3030
"react-dom": "^16.3.1"
3131
},
3232
"peerDependencies": {
3333
"react": ">=16"
34+
},
35+
"publishConfig": {
36+
"registry": "https://packages.atlassian.com/api/npm/npm-public/"
3437
}
3538
}

0 commit comments

Comments
 (0)