Summary: Adding support for JS testing. Currently there are two environments tests can run in: node and electron. To select which environment to run a test in, name your test file accordingly `*.node.js` or `*.electron.js` and put it in a `__tests__` folder. - `yarn test` to run node based tests - `yarn test-electron` to run electron tests A basic snapshot test of the empty app is added to make sure the app is rendering as expected. A test for the server is added to make sure when Flipper is started the two servers (secure and insecure) are started and ready to accept connections. Reviewed By: passy Differential Revision: D10050212 fbshipit-source-id: 8ef7f931339b43251d9d423886bcaca99ae691e4
111 lines
3.3 KiB
JSON
111 lines
3.3 KiB
JSON
{
|
|
"name": "flipper",
|
|
"private": true,
|
|
"version": "0.8.1",
|
|
"versionDate": "2018-4-12",
|
|
"description": "Mobile development tool",
|
|
"productName": "Flipper",
|
|
"author": "Facebook Inc",
|
|
"main": "src/index.js",
|
|
"icon": "icon.png",
|
|
"category": "facebook-intern",
|
|
"privileged": true,
|
|
"build": {
|
|
"appId": "flipper",
|
|
"productName": "Flipper",
|
|
"artifactName": "Flipper-${os}.${ext}",
|
|
"mac": {
|
|
"category": "public.app-category.developer-tools"
|
|
},
|
|
"win": {
|
|
"publisherName": "Facebook, Inc."
|
|
}
|
|
},
|
|
"resolutions": {
|
|
"@jest-runner/electron/electron": "3.0.0"
|
|
},
|
|
"jest": {
|
|
"transform": {
|
|
"\\.(js)$": "<rootDir>/static/transforms/index.js"
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"@jest-runner/electron": "^0.0.8",
|
|
"babel-eslint": "8.2.1",
|
|
"electron": "3.0.0",
|
|
"electron-builder": "^19.49.0",
|
|
"eslint": "^4.15.0",
|
|
"eslint-config-fbjs": "^2.0.1",
|
|
"eslint-plugin-babel": "^4.1.2",
|
|
"eslint-plugin-flowtype": "^2.41.0",
|
|
"eslint-plugin-header": "^1.2.0",
|
|
"eslint-plugin-jsx-a11y": "^6.0.3",
|
|
"eslint-plugin-prettier": "^2.4.0",
|
|
"eslint-plugin-react": "^7.5.1",
|
|
"eslint-plugin-relay": "^0.0.20",
|
|
"flow-bin": "^0.76.0",
|
|
"glob": "^7.1.2",
|
|
"jest": "^23.6.0",
|
|
"prettier": "1.13.6",
|
|
"redux-mock-store": "^1.5.3"
|
|
},
|
|
"dependencies": {
|
|
"JSONStream": "^1.3.1",
|
|
"adbkit-fb": "2.10.1",
|
|
"ansi-to-html": "^0.6.3",
|
|
"chalk": "^2.3.0",
|
|
"codemirror": "^5.25.0",
|
|
"cross-env": "^5.2.0",
|
|
"dashify": "^1.0.0",
|
|
"deep-equal": "^1.0.1",
|
|
"detect-port": "^1.1.1",
|
|
"electron-devtools-installer": "^2.2.0",
|
|
"emotion": "^9.2.6",
|
|
"express": "^4.15.2",
|
|
"fs-extra": "^5.0.0",
|
|
"invariant": "^2.2.2",
|
|
"lodash.debounce": "^4.0.8",
|
|
"mkdirp": "^0.5.1",
|
|
"openssl-wrapper": "^0.3.4",
|
|
"prop-types": "^15.6.0",
|
|
"react": "16",
|
|
"react-color": "^2.11.7",
|
|
"react-debounce-render": "^4.0.3",
|
|
"react-devtools-core": "3.1.0",
|
|
"react-dom": "16",
|
|
"react-emotion": "^9.2.6",
|
|
"react-redux": "^5.0.7",
|
|
"react-test-renderer": "^16.5.2",
|
|
"react-virtualized-auto-sizer": "^1.0.2",
|
|
"react-window": "^1.1.1",
|
|
"redux": "^4.0.0",
|
|
"redux-persist": "^5.10.0",
|
|
"redux-persist-transform-filter": "^0.0.18",
|
|
"rsocket-core": "^0.0.6",
|
|
"rsocket-tcp-server": "^0.0.6",
|
|
"socket.io": "^2.0.4",
|
|
"string-natural-compare": "^2.0.2",
|
|
"tmp": "^0.0.33",
|
|
"websocket": "^1.0.24",
|
|
"ws": "^4.0.0",
|
|
"xml2js": "^0.4.19",
|
|
"yargs": "^11.0.0"
|
|
},
|
|
"scripts": {
|
|
"postinstall": "node scripts/yarn-install.js",
|
|
"rm-dist": "rm -rf dist",
|
|
"rm-modules": "rm -rf node_modules static/node_modules",
|
|
"rm-temp": "rm -rf $TMPDIR/jest* $TMPDIR/react-native-packager*",
|
|
"reset": "yarn cache clean && yarn rm-dist && yarn rm-modules && yarn rm-temp",
|
|
"start": "cross-env NODE_ENV=development node scripts/start-dev-server.js",
|
|
"build": "yarn rm-dist && cross-env NODE_ENV=production node scripts/build-release.js $@",
|
|
"fix": "eslint . --fix",
|
|
"test": "jest --testPathPattern=node\\.js$",
|
|
"test-electron": "jest --testPathPattern=electron\\.js$ --testEnvironment=@jest-runner/electron/environment --runner=@jest-runner/electron",
|
|
"lint": "eslint . && flow check"
|
|
},
|
|
"optionalDependencies": {
|
|
"7zip-bin-mac": "^1.0.1"
|
|
}
|
|
}
|