-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1.07 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
{
"name": "jest-bug",
"version": "0.0.1",
"main": "src/basics.js",
"licence": "MIT",
"scripts": {
"start": "npm run test-no-jest ; npm run test",
"test": "./node_modules/.bin/jest --coverage --verbose --no-cache",
"test-watch": "./node_modules/.bin/jest --watch --coverage --no-cache",
"test-no-jest": "./node_modules/.bin/babel-node ./src/basics.js"
},
"author":
"Vincent Lecrubier <vincent.lecrubier@sterblue.com> (http://www.sterblue.com/)",
"jest": {
"collectCoverage": true,
"transform": {
"^.+\\.jsx?$": "babel-jest"
},
"coverageReporters": ["json", "lcov", "text"]
},
"dependencies": {
"babel-cli": "^6.26.0",
"babel-jest": "^21.2.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^4.11.0",
"eslint-plugin-class-property": "^1.0.6",
"eslint-plugin-jest": "^21.3.2",
"flow-bin": "^0.59.0",
"jest": "^21.2.1",
"jest-cli": "^21.2.1"
}
}