-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.12 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
{
"name": "win-drive-clean",
"version": "1.0.1",
"description": "Remove a disks partition table on Windows",
"license": "MIT",
"author": "Jonas Hermsmeier <[email protected]> (https://jhermsmeier.de)",
"keywords": [
"drive",
"clean",
"diskpart",
"windows"
],
"main": "lib/clean.js",
"scripts": {
"test": "mocha",
"lint": "standard lib && standard --env mocha test && cpplint --recursive src",
"install": "prebuild-install || node-gyp rebuild",
"rebuild": "node-gyp rebuild",
"clean": "node-gyp clean",
"prebuild-release": "prebuild --all --strip"
},
"dependencies": {
"bindings": "^1.3.0",
"nan": "^2.8.0",
"prebuild-install": "^2.5.0"
},
"devDependencies": {
"mocha": "^5.0.0",
"prebuild": "^7.4.0",
"standard": "^10.0.3"
},
"peerDependencies": {},
"optionalDependencies": {},
"homepage": "https://github.com/resin-io-modules/win-drive-clean",
"repository": {
"type": "git",
"url": "https://github.com/resin-io-modules/win-drive-clean.git"
},
"bugs": {
"url": "https://github.com/resin-io-modules/win-drive-clean/issues"
}
}