forked from balena-io-modules/drivelist
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.12 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.12 KB
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": "drivelist",
"version": "5.0.19",
"description": "List all connected drives in your computer, in all major operating systems",
"main": "lib/drivelist.js",
"homepage": "https://github.com/resin-io-modules/drivelist",
"repository": {
"type": "git",
"url": "git://github.com/resin-io-modules/drivelist.git"
},
"keywords": [
"disk",
"cross",
"platform",
"physical",
"drive",
"list"
],
"directories": {
"test": "tests"
},
"scripts": {
"test": "npm run lint && mocha --recursive tests -R spec",
"lint": "eslint lib tests example.js",
"readme": "jsdoc2md --template doc/README.hbs lib/drivelist.js > README.md"
},
"bin": {
"drivelist-darwin": "scripts/darwin.sh",
"drivelist-linux": "scripts/linux.sh",
"drivelist-win32": "scripts/win32.bat"
},
"author": "Juan Cruz Viotti <juan@resin.io>",
"license": "Apache-2.0",
"devDependencies": {
"eslint": "^3.9.0",
"jsdoc-to-markdown": "^2.0.1",
"mocha": "^2.4.5",
"mochainon": "^1.0.0"
},
"dependencies": {
"debug": "^2.6.0",
"js-yaml": "^3.4.1",
"lodash": "^4.16.4"
}
}