-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 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
{
"name": "gulp-isort",
"version": "0.0.1",
"description": "Gulp plugin for Isort.",
"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-isort.git"
},
"keywords": [
"isort",
"python",
"gulpplugin"
],
"author": "Sophilabs",
"license": "MIT",
"bugs": {
"url": "/~https://github.com/sophilabs/gulp-isort/issues"
},
"homepage": "/~https://github.com/sophilabs/gulp-isort#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"
}
}