-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
43 lines (43 loc) · 1.09 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
{
"name": "drivelist-scanner",
"version": "1.0.0",
"description": "Dynamically detect when drives are being added and/or removed",
"main": "build/drivelist-scanner.js",
"homepage": "https://github.com/mkorakakis/drivelist-scanner",
"repository": {
"type": "git",
"url": "git://github.com/mkorakakis/drivelist-scanner.git"
},
"keywords": [
"dynamic",
"drivelist",
"scanner"
],
"directories": {
"test": "tests"
},
"scripts": {
"test": "gulp test",
"prepublish": "gulp build",
"readme": "jsdoc2md --template doc/README.hbs build/drivelist-scanner.js > README.md"
},
"author": "Michalis Korakakis <[email protected]>",
"license": "MIT",
"devDependencies": {
"coffee-script": "~1.8.0",
"gulp": "~3.8.10",
"gulp-coffee": "~2.2.0",
"gulp-coffeelint": "~0.4.0",
"gulp-mocha": "~2.0.0",
"gulp-util": "~3.0.1",
"jscs-jsdoc": "^1.2.0",
"jsdoc-to-markdown": "^1.1.1",
"mocha": "~2.0.1",
"mochainon": "^1.0.0"
},
"dependencies": {
"bluebird": "^3.0.0",
"drivelist": "^2.0.1",
"lodash": "^3.10.1"
}
}