forked from jestjs/jest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.43 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "jest-cli",
"description": "Painless JavaScript Unit Testing.",
"version": "11.0.2",
"main": "src/jest.js",
"dependencies": {
"chalk": "^1.1.1",
"cover": "^0.2.9",
"diff": "^2.1.1",
"graceful-fs": "^4.1.3",
"istanbul": "^0.4.2",
"jest-environment-jsdom": "^11.0.2",
"jest-environment-node": "^11.0.2",
"jest-haste-map": "^11.0.2",
"jest-jasmine1": "^11.0.2",
"jest-jasmine2": "^11.0.2",
"jest-mock": "^11.0.2",
"jest-util": "^11.0.2",
"json-stable-stringify": "^1.0.0",
"lodash.template": "^4.2.4",
"mkdirp": "^0.5.1",
"optimist": "^0.6.1",
"resolve": "^1.1.6",
"sane": "^1.2.0",
"which": "^1.1.1",
"worker-farm": "^1.3.1"
},
"devDependencies": {
"babel-eslint": "^6.0.2",
"eslint": "^1.10.3",
"eslint-plugin-babel": "^3.2.0",
"fbjs-scripts": "^0.6.0",
"lerna": "^1.1.2",
"rimraf": "^2.4.4"
},
"bin": {
"jest": "./bin/jest.js"
},
"engines": {
"node": ">= 4"
},
"repository": {
"type": "git",
"url": "https://github.com/facebook/jest"
},
"scripts": {
"jest-cache": "node bin/jest.js",
"jest-heap-usage": "node bin/jest.js --runInBand --logHeapUsage",
"jest-in-band": "node bin/jest.js --runInBand",
"jest-jasmine1": "node bin/jest.js --testRunner=jasmine1",
"jest-json": "node bin/jest.js --json",
"jest-no-cache": "node bin/jest.js --no-cache",
"jest-node-cache": "node bin/jest.js --no-watchman",
"jest-node-no-cache": "node bin/jest.js --no-watchman --no-cache",
"jest-verbose": "node bin/jest.js --verbose",
"lint": "eslint .",
"postinstall": "node postinstall.js",
"prepublish": "npm test",
"test": "npm run lint && npm run jest-no-cache && npm run jest-cache && npm run jest-node-no-cache && npm run jest-node-cache && npm run jest-jasmine1 && npm run jest-in-band && npm run jest-heap-usage && npm run jest-json && npm run jest-verbose && npm link --ignore-scripts && node ./runTests.js"
},
"jest": {
"rootDir": "src",
"testPathIgnorePatterns": [
"/__tests__/[^/]*/.+"
],
"testEnvironment": "jest-environment-node",
"globals": {
"CACHE_DIRECTORY": "<rootDir>/../.haste_cache"
}
},
"bugs": {
"url": "https://github.com/facebook/jest/issues"
},
"homepage": "http://facebook.github.io/jest/",
"keywords": [
"facebook",
"jest",
"test",
"unit",
"jasmine",
"mock"
],
"license": "BSD-3-Clause"
}