-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 loc) · 1.39 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
54
55
{
"name": "mountutils",
"version": "1.3.21",
"main": "index.js",
"description": "Cross platform mount related utilities",
"homepage": "https://github.com/resin-io-modules/mountutils",
"repository": {
"type": "git",
"url": "git://github.com/resin-io-modules/mountutils.git"
},
"keywords": [
"mount",
"utils",
"unmount",
"unmounDisk",
"cross",
"platform"
],
"directories": {
"test": "tests"
},
"scripts": {
"configure": "node-gyp configure",
"build": "node-gyp build",
"rebuild": "node-gyp rebuild",
"readme": "jsdoc2md --template docs/README.hbs index.js > README.md",
"lint-js": "eslint *.js",
"lint-cpp": "cpplint --recursive src",
"lint": "npm run lint-js && npm run lint-cpp",
"test": "mocha tests -R spec",
"install": "prebuild-install || node-gyp rebuild",
"prebuild-release": "prebuild --all --strip"
},
"author": "Juan Cruz Viotti <[email protected]>",
"license": "Apache-2.0",
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.19.1",
"jsdoc-to-markdown": "^4.0.1",
"mocha": "^5.2.0",
"prebuild": "^7.6.0"
},
"dependencies": {
"bindings": "^1.3.0",
"nan": "^2.14.0",
"prebuild-install": "^4.0.0"
},
"gypfile": true,
"bugs": {
"url": "https://github.com/resin-io-modules/mountutils/issues"
},
"versionist": {
"publishedAt": "2021-11-19T14:35:26.846Z"
}
}