fluentui-react-native/scripts/package.json

75 строки
2.1 KiB
JSON
Исходник Обычный вид История

{
"name": "@fluentui-react-native/scripts",
"version": "0.1.1",
"private": true,
"main": "./lib/index.js",
"bin": {
Bundling, jest improvements, adding windows tester (#145) * add initial windows template * minor updates to configuration * rename tester package * update fluent-tester deps * pull experiments/tester out of the compilation * move tester sources to fluent-tester * more file changes * switch the bin name from just-script to fluent-scripts to disambiguate names * get bundling working in fluent-tester for win32 * unhoist RN to unblock win32 * move last few files from experiments/tester * Change files * add .DS_Store to root gitignore * more config and babel updates * fix build/bundling errors after syncing master * fixed metro bundling and start to build rn tools package * restore checkbox test * move checkbox test to match pattern from other components * clean up unused files in scripts * fix build errors from merge and script transfer * fix final bundling issues * Change files * more updates to fix configurations * remove demo and experimental web controls * add pressability from RN 0.63 and rework interactive hooks * remove win32 references from the tester * move metro task to build tools * rename file * fix windows and win32 bundles * improve overall bundling task workflow * fix some win32 build errors * add some configuration versatility * add server option to metro task * add postinstall script to update caches * attempts to make XAML version reference the right bundle * enable jest tests for Text and Separator * Change files * update yarn.lock * write windows bundle to dist
2020-04-03 23:21:30 +03:00
"fluentui-scripts": "./just-scripts.js"
},
"scripts": {
"build-tools": "just-scripts build",
"bundlesize": "bundlesize --debug",
"code-style": "node ./lib/just-scripts.js code-style",
"depcheck": "just-scripts depcheck",
"prettier": "node ./just-scripts.js prettier",
"prettier-fix": "node ./just-scripts.js prettier --fix true"
},
"repository": {
"type": "git",
"url": "https://github.com/microsoft/fluentui-react-native.git",
"directory": "scripts"
},
"peerDependencies": {
"just-scripts": ">=0.36.1"
},
"devDependencies": {
"@react-native-community/cli": "^5.0.1",
"@rnx-kit/jest-preset": "^0.1.9",
Bundling, jest improvements, adding windows tester (#145) * add initial windows template * minor updates to configuration * rename tester package * update fluent-tester deps * pull experiments/tester out of the compilation * move tester sources to fluent-tester * more file changes * switch the bin name from just-script to fluent-scripts to disambiguate names * get bundling working in fluent-tester for win32 * unhoist RN to unblock win32 * move last few files from experiments/tester * Change files * add .DS_Store to root gitignore * more config and babel updates * fix build/bundling errors after syncing master * fixed metro bundling and start to build rn tools package * restore checkbox test * move checkbox test to match pattern from other components * clean up unused files in scripts * fix build errors from merge and script transfer * fix final bundling issues * Change files * more updates to fix configurations * remove demo and experimental web controls * add pressability from RN 0.63 and rework interactive hooks * remove win32 references from the tester * move metro task to build tools * rename file * fix windows and win32 bundles * improve overall bundling task workflow * fix some win32 build errors * add some configuration versatility * add server option to metro task * add postinstall script to update caches * attempts to make XAML version reference the right bundle * enable jest tests for Text and Separator * Change files * update yarn.lock * write windows bundle to dist
2020-04-03 23:21:30 +03:00
"@types/enzyme": "^3.10.5",
"@types/es6-collections": "^0.5.29",
"@types/es6-promise": "0.0.32",
"@types/jest": "^26.0.0",
"@types/node": "^12.11.2",
"@types/react-native": "^0.64.0",
"@types/react-test-renderer": "16.9.0",
"@types/webpack-env": "1.13.6",
"@uifabric/prettier-rules": "^7.0.3",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.5",
"depcheck": "^1.0.0",
Bundling, jest improvements, adding windows tester (#145) * add initial windows template * minor updates to configuration * rename tester package * update fluent-tester deps * pull experiments/tester out of the compilation * move tester sources to fluent-tester * more file changes * switch the bin name from just-script to fluent-scripts to disambiguate names * get bundling working in fluent-tester for win32 * unhoist RN to unblock win32 * move last few files from experiments/tester * Change files * add .DS_Store to root gitignore * more config and babel updates * fix build/bundling errors after syncing master * fixed metro bundling and start to build rn tools package * restore checkbox test * move checkbox test to match pattern from other components * clean up unused files in scripts * fix build errors from merge and script transfer * fix final bundling issues * Change files * more updates to fix configurations * remove demo and experimental web controls * add pressability from RN 0.63 and rework interactive hooks * remove win32 references from the tester * move metro task to build tools * rename file * fix windows and win32 bundles * improve overall bundling task workflow * fix some win32 build errors * add some configuration versatility * add server option to metro task * add postinstall script to update caches * attempts to make XAML version reference the right bundle * enable jest tests for Text and Separator * Change files * update yarn.lock * write windows bundle to dist
2020-04-03 23:21:30 +03:00
"enzyme": "^3.11.0",
"enzyme-to-json": "^3.5.0",
"find-up": "^5.0.0",
"fs-extra": "^7.0.1",
"jest": "^27.0.0",
"jest-diff": "^27.0.0",
"jsdom": "^16.4.0",
"just-scripts": "^0.38.0",
"just-task": "^0.14.3",
"metro-config": "^0.66.2",
"metro-react-native-babel-transformer": "^0.66.2",
"prettier": "^2.4.1",
"react-native-svg-transformer": "^0.14.3",
"react-test-renderer": "17.0.1",
"rimraf": "^3.0.2",
"typescript": "4.5.4",
"webpack": "^4.42.0",
"webpack-bundle-analyzer": "^3.0.4",
"webpack-cli": "3.2.3",
"webpack-dev-server": "3.1.14",
"webpack-notifier": "^1.6.0",
"workspace-tools": "^0.9.3"
},
"bundlesize": [
{
"path": "../apps/test-bundles/dist/office-ui-fabric-react-Button.min.js",
"maxSize": "50.1 kB"
}
2019-09-19 03:15:58 +03:00
],
"beachball": {
2019-09-23 21:20:34 +03:00
"shouldPublish": false,
"disallowedChangeTypes": [
"major"
]
2019-09-19 03:15:58 +03:00
}
2020-03-21 01:28:10 +03:00
}