forked from jestjs/jest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.71 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
{
"name": "jest-cli",
"description": "Painless JavaScript Unit Testing.",
"version": "0.10.0",
"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-jasmine1": "^10.0.1",
"jest-jasmine2": "^10.0.1",
"jest-mock": "^10.0.1",
"jest-util": "^10.0.1",
"jsdom": "^7.2.0",
"json-stable-stringify": "^1.0.0",
"lodash.template": "^3.6.2",
"mkdirp": "^0.5.1",
"node-haste": "^2.5.0",
"optimist": "^0.6.1",
"resolve": "^1.1.6",
"sane": "^1.2.0",
"which": "^1.1.1",
"worker-farm": "^1.3.1"
},
"devDependencies": {
"babel-eslint": "^4.1.3",
"eslint": "^1.7.3",
"fbjs-scripts": "^0.5.0",
"lerna": "^1.1.2"
},
"bin": {
"jest": "./bin/jest.js"
},
"engines": {
"node": ">= 4"
},
"repository": {
"type": "git",
"url": "https://github.com/facebook/jest"
},
"scripts": {
"jasmine1": "node bin/jest.js --testRunner=jasmine1",
"lint": "eslint .",
"postinstall": "node postinstall.js",
"prepublish": "npm test",
"test": "npm run lint && node bin/jest.js && npm run jasmine1 && npm link --ignore-scripts && node ./run_tests.js"
},
"jest": {
"rootDir": "src",
"testPathIgnorePatterns": ["/__tests__/[^/]*/.+"],
"testEnvironment": "<rootDir>/environments/NodeEnvironment",
"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"
}