This repository has been archived by the owner on Sep 1, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
51 lines (51 loc) · 1.53 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "jest-electron-runner",
"private": true,
"version": "0.0.0",
"description": "",
"repository": {
"type": "git",
"url": "git+https://github.com/facebook-atom/jest-electron-runner.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/facebook-atom/jest-electron-runner/issues"
},
"homepage": "https://github.com/facebook-atom/jest-electron-runner#readme",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/plugin-proposal-object-rest-spread": "^7.3.1",
"@babel/preset-flow": "^7.0.0",
"babel-eslint": "^9.0.0",
"babel-jest": "^24.0.0",
"babel-plugin-transform-es2015-modules-commonjs": "6.26.0",
"eslint": "^5.4.0",
"eslint-plugin-jest": "^21.22.0",
"flow-bin": "^0.91.0",
"flow-remove-types": "^1.2.3",
"fs-extra": "^7.0.0",
"glob": "^7.1.3",
"jest": "^24.0.0",
"jest-circus": "^24.0.0",
"lerna": "^3.10.7",
"prettier": "^1.14.2",
"string-length": "^2.0.0"
},
"workspaces": [
"packages/*"
],
"scripts": {
"flow": "flow check",
"build": "flow-node ./scripts/build",
"build-watch": "flow-node ./scripts/build && flow-node ./scripts/build-watch",
"clean": "rm -rf ./packages/*/build",
"lint": "eslint .",
"test": "jest -w 3",
"test-all": "yarn flow && yarn test && yarn lint",
"gen-rpc": "node packages/rpc/bin/cli.js packages/*/src/rpc/{JestWorkerRPC,NuclideE2ERPC}.js"
},
"dependencies": {}
}