forked from Nerajno/gulp-jest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.32 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": "gulp-jest",
"version": "0.6.0",
"description": "Gulp plugin for running your Jest tests",
"main": "lib/index.js",
"scripts": {
"build": "babel src --out-dir lib --copy-files --loose-mode",
"test": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git://github.com/alansouzati/gulp-jest.git"
},
"authors": [
{
"name": "Dominic Barker",
"email": "dom.barker808@gmail.com",
"url": "http://www.dombarker.co.uk"
},
{
"name": "Alan Souza",
"email": "alansouzati@gmail.com",
"url": "https://github.com/alansouzati"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/alansouzati/gulp-jest/issues"
},
"homepage": "https://github.com/alansouzati/gulp-jest",
"dependencies": {
"jest-cli": "^17.0.0",
"gulp-util": "^3.0.0",
"through2": "^2.0.1"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-jest": "^17.0.0",
"babel-plugin-transform-object-rest-spread": "^6.3.13",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18",
"gulp": "^3.8.7"
},
"keywords": [
"gulpplugin",
"jest",
"test",
"testing",
"unit",
"framework",
"runner",
"tdd",
"bdd",
"qunit",
"spec",
"tap"
],
"jest": {
"testEnvironment": "node"
}
}