-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
executable file
·58 lines (58 loc) · 1.21 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
{
"name": "gulp-phpunit",
"version": "0.26.0",
"description": "PHPUnit plugin for Gulp",
"main": "index.js",
"reveal": true,
"dependencies": {
"chalk": "^2.0.1",
"chalkline": "0.0.5",
"gulp-messenger": "^0.28.2",
"gulp-notify": "3.0.0",
"lodash": "^4.15.0",
"map-stream": "~0.0.4",
"node-notifier": "5.0.2",
"plugin-error": "^0.1.2",
"shelljs": "0.7.6"
},
"devDependencies": {
"chai": "3.5.0",
"eslint": "3.14.1",
"esprima": "3.1.3",
"gulp": "3.9.1",
"gulp-mocha": "3.0.1",
"gulp-shell": "0.5.2",
"lint-staged": "3.2.8",
"mocha": "3.2.0"
},
"scripts": {
"test": "mocha --reporter spec",
"eslint": "eslint \"./**/*.js\"",
"lint-staged": "lint-staged"
},
"lint-staged": {
"*.js": "eslint"
},
"pre-commit": "lint-staged",
"repository": {
"type": "git",
"url": "git://github.com/mikeerickson/gulp-phpunit"
},
"keywords": [
"gulpplugin",
"phpunit",
"gulp",
"gulp-phpunit"
],
"author": {
"name": "codedungeon",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/mikeerickson/gulp-phpunit/issues"
},
"engines": {
"node": ">=0.10.0"
}
}