forked from jestjs/jest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.62 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
{
"name": "jest-cli",
"description": "Painless JavaScript Unit Testing.",
"version": "0.8.2",
"main": "src/jest.js",
"dependencies": {
"chalk": "^1.1.1",
"cover": "^0.2.9",
"diff": "^2.1.1",
"graceful-fs": "^4.1.2",
"istanbul": "^0.4.2",
"jsdom": "^7.2.0",
"json-stable-stringify": "^1.0.0",
"mkdirp": "^0.5.1",
"node-haste": "^1.2.8",
"object-assign": "^4.0.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": "^4.1.3",
"eslint": "^1.7.3",
"fbjs-scripts": "^0.5.0"
},
"bin": {
"jest": "./bin/jest.js"
},
"engines": {
"node": ">= 4"
},
"repository": {
"type": "git",
"url": "https://github.com/facebook/jest"
},
"scripts": {
"lint": "eslint .",
"prepublish": "npm test",
"test": "npm run lint && npm run jasmine1 && npm run jasmine2",
"jasmine1": "node bin/jest.js --testRunner='<rootDir>/testRunners/jasmine/jasmine1.js'",
"jasmine2": "node bin/jest.js --testRunner='<rootDir>/testRunners/jasmine/jasmine2.js'"
},
"jest": {
"rootDir": "src",
"testPathIgnorePatterns": [
"/__tests__/[^/]*/.+"
],
"testEnvironment_EXPERIMENTAL": "<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"
}