UNPKG

1.41 kBJSONView Raw
1{
2 "name": "gulp-jest",
3 "version": "4.0.1",
4 "description": "Gulp plugin for running your Jest tests",
5 "main": "lib/index.js",
6 "scripts": {
7 "build": "babel src --out-dir lib --copy-files --loose-mode",
8 "test": "jest --coverage"
9 },
10 "repository": {
11 "type": "git",
12 "url": "git://github.com/alansouzati/gulp-jest.git"
13 },
14 "authors": [
15 {
16 "name": "Dominic Barker",
17 "email": "dom.barker808@gmail.com",
18 "url": "http://www.dombarker.co.uk"
19 },
20 {
21 "name": "Alan Souza",
22 "email": "alansouzati@gmail.com",
23 "url": "https://github.com/alansouzati"
24 }
25 ],
26 "license": "MIT",
27 "bugs": {
28 "url": "https://github.com/alansouzati/gulp-jest/issues"
29 },
30 "homepage": "https://github.com/alansouzati/gulp-jest",
31 "dependencies": {
32 "plugin-error": "^1.0.1",
33 "through2": "^2.0.1"
34 },
35 "devDependencies": {
36 "babel-cli": "^6.18.0",
37 "babel-jest": ">=20.0.0",
38 "babel-plugin-transform-object-rest-spread": "^6.3.13",
39 "babel-preset-es2015": "^6.1.18",
40 "babel-preset-react": "^6.1.18",
41 "gulp": "^3.8.7",
42 "jest-cli": "^22.4.2"
43 },
44 "peerDependencies": {
45 "jest-cli": ">=22.4.2"
46 },
47 "keywords": [
48 "gulpplugin",
49 "jest",
50 "test",
51 "testing",
52 "unit",
53 "framework",
54 "runner",
55 "tdd",
56 "bdd",
57 "qunit",
58 "spec",
59 "tap"
60 ],
61 "jest": {
62 "testEnvironment": "node"
63 }
64}