forked from balena-io-modules/drivelist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.37 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": "drivelist",
"version": "6.4.0",
"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",
"gypfile": true,
"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 && cpplint --recursive src",
"readme": "jsdoc2md --template doc/README.hbs lib/drivelist.js > README.md",
"configure": "node-gyp configure",
"build": "node-gyp rebuild",
"rebuild": "node-gyp rebuild",
"install": "prebuild-install || node-gyp rebuild",
"prebuild-release": "prebuild --all --strip"
},
"author": "Juan Cruz Viotti <[email protected]>",
"license": "Apache-2.0",
"engines": {
"node": ">=4"
},
"devDependencies": {
"eslint": "^4.19.1",
"jsdoc-to-markdown": "^4.0.1",
"mocha": "^5.1.1",
"mochainon": "^2.0.0",
"mock-spawn": "^0.2.6",
"prebuild": "^7.6.0"
},
"dependencies": {
"bindings": "^1.3.0",
"debug": "^3.1.0",
"fast-plist": "^0.1.2",
"nan": "^2.10.0",
"prebuild-install": "^4.0.0"
}
}