forked from jestjs/jest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.4 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
{
"name": "jest-cli",
"description": "Painless JavaScript Unit Testing.",
"version": "0.2.2",
"main": "src/jest.js",
"dependencies": {
"coffee-script": "^1.8.0",
"cover": "~0.2.8",
"diff": "~1.0.4",
"graceful-fs": "^2.0.3",
"harmonize": "~1.33.7",
"istanbul": "^0.3.2",
"jasmine-only": "0.1.0",
"jasmine-pit": "~2.0.0",
"jsdom": "~0.10.3",
"node-find-files": "~0.0.2",
"node-haste": "git://github.com/johannhof/node-haste",
"node-worker-pool": "~2.4.2",
"optimist": "~0.6.0",
"q": "~0.9.7",
"resolve": "~0.6.1",
"through": "^2.3.4",
"underscore": "1.2.4"
},
"devDependencies": {
"jshint": "~2.5.0"
},
"bin": {
"jest": "./bin/jest.js"
},
"engines": {
"node": "0.8.x || 0.10.x"
},
"repository": {
"type": "git",
"url": "https://github.com/facebook/jest"
},
"scripts": {
"prepublish": "jshint --config=.jshintrc --exclude=src/coverageTemplate.js src && node bin/jest.js",
"test": "jshint --config=.jshintrc --exclude=src/coverageTemplate.js src && node bin/jest.js"
},
"jest": {
"rootDir": "src",
"testPathIgnorePatterns": [
"/__tests__/[^/]*/.+"
]
},
"bugs": {
"url": "https://github.com/facebook/jest/issues"
},
"homepage": "http://facebook.github.io/jest/",
"keywords": [
"facebook",
"jest",
"test",
"unit",
"jasmine",
"mock"
],
"license": "BSD"
}