-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.01 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
{
"name": "gulp-flake8",
"version": "0.0.7",
"description": "Gulp plugin for Flake8.",
"main": "lib/index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec $(find ./test -name *.tests.js) && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"lint": "semistandard *.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sophilabs/gulp-flake8.git"
},
"keywords": [
"flake8",
"gulpplugin"
],
"author": "Sophilabs",
"license": "MIT",
"bugs": {
"url": "https://github.com/sophilabs/gulp-flake8/issues"
},
"homepage": "https://github.com/sophilabs/gulp-flake8#readme",
"dependencies": {
"gulp-util": "^3.0.7",
"through2": "^2.0.1"
},
"devDependencies": {
"coveralls": "^2.11.9",
"istanbul": "^0.4.4",
"mocha": "^2.5.3",
"semistandard": "^8.0.0",
"should": "^9.0.2",
"vinyl": "^1.1.1"
}
}