-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
43 lines (43 loc) · 1020 Bytes
/
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
{
"name": "gulp-standard",
"version": "14.0.0",
"description": "gulp plugin for checking JavaScript code with the standard syntax",
"main": "index.js",
"keywords": [
"standard",
"gulpplugin"
],
"scripts": {
"test": "standard --verbose && mocha",
"fix-style": "standard --verbose --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/emgeee/gulp-standard"
},
"author": "Matt Green <[email protected]> (http://emgeee.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/emgeee/gulp-standard/issues"
},
"homepage": "https://github.com/emgeee/gulp-standard",
"dependencies": {
"app-root-path": "^2.0.0",
"colors": "^1.2.4",
"log-symbols": "^3.0.0",
"path": "^0.12.7",
"plugin-error": "^1.0.0",
"standard": "^14.0.0",
"through2": "^3.0.1"
},
"devDependencies": {
"mocha": "^3.5.3",
"should": "^11.2.1",
"vinyl": "^2.1.0"
},
"standard": {
"ignore": [
"test/fixtures/**/*"
]
}
}