-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.24 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
49
50
51
52
53
{
"name": "auto-plug",
"description": "Auto-require plugin packages by prefix. (for i.e. Gulp, Grunt or other heavy plugin-dependent packages)",
"version": "1.2.0",
"author": "Simon Lepel <[email protected]>",
"license": "MIT",
"keywords": [
"require",
"load",
"plugins",
"autoload",
"dependencies",
"gulp",
"gulpfriendly",
"grunt"
],
"scripts": {
"test": "mocha -R spec",
"lint": "jshint ./lib/*.js & jscs ./lib/*.js",
"cover": "istanbul cover ./node_modules/.bin/_mocha -- -R spec",
"watch": "mocha -R spec -w",
"codeclimate": "codeclimate-test-reporter < coverage/lcov.info"
},
"repository": {
"type": "git",
"url": "git://github.com/simbo/auto-plug.git"
},
"bugs": {
"url": "https://github.com/simbo/auto-plug/issues"
},
"main": "index.js",
"files": [
"lib/",
"index.js",
"LICENSE",
"README.md"
],
"dependencies": {
"arrayify": "^1.0.0",
"defined-options": "^0.2.3",
"findup-sync": "^0.3.0",
"multimatch": "^2.0.0"
},
"devDependencies": {
"codeclimate-test-reporter": "0.1.1",
"istanbul": "^0.3.17",
"jscs": "^2.0.0",
"jshint": "^2.8.0",
"mocha": "^2.2.5",
"proxyquire": "^1.6.0",
"sinon": "^1.15.4"
}
}