-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
48 lines (48 loc) · 1.02 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
{
"name": "gulp-phpcs",
"version": "3.1.0",
"description": "PHP Code Sniffer plugin for Gulp",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/JustBlackBird/gulp-phpcs.git"
},
"bugs": {
"url": "https://github.com/JustBlackBird/gulp-phpcs/issues"
},
"author": {
"name": "Dmitriy Simushev",
"email": "simushevds@gmail.com"
},
"main": "index.js",
"keywords": [
"gulpplugin",
"phpcs"
],
"engines": {
"node": ">=0.10.0"
},
"dependencies": {
"through2": "^2.0.0",
"chalk": "^1.1.1",
"fancy-log": "^1.3.3",
"plugin-error": "^1.0.1",
"pluralize": "^1.2.1",
"which": "^1.2.7"
},
"devDependencies": {
"chai": "^3.5.0",
"file-exists": "^2.0.0",
"is-windows": "^0.2.0",
"jshint": "^2.9.3",
"mocha": "^6.1.4",
"mock-fs": "^4.9.0",
"mock-require": "^1.3.0",
"sinon": "^1.17.6",
"vinyl": "^1.2.0"
},
"scripts": {
"jshint": "jshint index.js reporters",
"test": "mocha --recursive test/specs"
}
}