-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
78 lines (78 loc) · 1.67 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
{
"name": "gulp-jest",
"version": "4.0.4",
"description": "Gulp plugin for running your Jest tests",
"main": "lib/index.js",
"scripts": {
"build": "babel src --out-dir lib --copy-files",
"test": "jest --coverage",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git://github.com/aarontrank/gulp-jest.git"
},
"authors": [
{
"name": "Dominic Barker",
"email": "[email protected]",
"url": "http://www.dombarker.co.uk"
},
{
"name": "Alan Souza",
"email": "[email protected]",
"url": "https://github.com/alansouzati"
},
{
"name": "Aaron Trank",
"email": "[email protected]",
"url": "https://github.com/aarontrank"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/aarontrank/gulp-jest/issues"
},
"homepage": "https://github.com/aarontrank/gulp-jest",
"dependencies": {
"plugin-error": "^1.0.1",
"through2": "^3.0.1"
},
"devDependencies": {
"@babel/cli": "^7.13.14",
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"gulp": "^4.0.2",
"jest": "^29.3.1"
},
"peerDependencies": {
"jest": ">=25.1.0"
},
"keywords": [
"gulpplugin",
"jest",
"test",
"testing",
"unit",
"framework",
"runner",
"tdd",
"bdd",
"qunit",
"spec",
"tap"
],
"jest": {
"testEnvironment": "node",
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 80,
"lines": 80,
"statements": 80
}
}
}
}