-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
49 lines (49 loc) · 1.55 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
{
"name": "jest-pytest",
"version": "0.7.0",
"main": "lib/index.js",
"repository": "https://github.com/jondot/jest-pytest",
"license": "MIT",
"description": "A Pytest Jest Runner",
"keywords": [],
"scripts": {
"build:lib": "babel src --out-dir lib --ignore src/__tests__",
"build:umd:min": "NODE_ENV=production webpack",
"build:umd": "NODE_ENV=development webpack",
"build": "yarn build:lib",
"release": "yarn build && git commit -am 'build'; yarn version && git push --tags && git push origin master",
"test": "yarn test:integration:quick && yarn test:integration",
"test:integration:quick": "node node_modules/.bin/jest",
"test:integration": "cd src/__tests__/integration && ./run.sh",
"watch": "node node_modules/.bin/jest --watch",
"flow:sync": "flow-typed install"
},
"dependencies": {
"fs-extra": "^5.0.0",
"lodash": "^4.17.4",
"tempy": "^0.2.1",
"yargs-parser": "^7.0.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.39",
"@babel/core": "^7.0.0-beta.39",
"@babel/node": "^7.0.0-beta.39",
"@babel/preset-env": "^7.0.0-beta.39",
"@babel/preset-flow": "^7.0.0-beta.39",
"@babel/preset-stage-0": "^7.0.0-beta.39",
"babel-core": "^7.0.0-0",
"babel-jest": "^22.1.0",
"dir-compare": "^1.4.0",
"flow-bin": "0.68.0",
"flow-typed": "^2.2.3",
"goddamn-javascript-config": "^2.0.0",
"jest": "^22.1.4",
"webpack": "^3.3.0"
},
"jest": {
"testRegex": "src/__tests__/.*\\.spec\\.js$",
"transform": {
"^.+\\.jsx?$": "babel-jest"
}
}
}