forked from nebez/gulp-semistandard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.04 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
{
"name": "gulp-semistandard",
"version": "0.2.1",
"description": "gulp plugin to check JavaScript code against the semistandard coding style",
"main": "index.js",
"scripts": {
"lint": "semistandard",
"test":" npm run lint && mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nebez/gulp-semistandard.git"
},
"keywords": [
"javascript",
"semistandard",
"gulp",
"gulpplugin",
"gulpfriendly"
],
"author": "Nebez Briefkani <[email protected]> (http://nebezb.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/nebez/gulp-semistandard/issues"
},
"semistandard": {
"ignore": [
"test/fixtures"
]
},
"homepage": "https://github.com/nebez/gulp-semistandard#readme",
"dependencies": {
"app-root-path": "^1.0.0",
"colors": "^1.0.3",
"gulp-util": "^3.0.4",
"log-symbols": "^1.0.2",
"path": "^0.11.14",
"semistandard": "^7.0.2",
"through2": "^0.6.3"
},
"devDependencies": {
"mocha": "^2.2.1",
"should": "^5.2.0"
}
}