forked from balena-io-modules/drivelist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.85 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "drivelist",
"version": "11.2.0",
"description": "List all connected drives in your computer, in all major operating systems",
"main": "js/index.js",
"homepage": "https://github.com/balena-io-modules/drivelist",
"gypfile": true,
"repository": {
"type": "git",
"url": "git://github.com/balena-io-modules/drivelist.git"
},
"keywords": [
"disk",
"cross",
"platform",
"physical",
"drive",
"list"
],
"directories": {
"test": "tests"
},
"scripts": {
"test": "mocha -r ts-node/register tests/**/*.spec.ts -R spec",
"lint": "npm run lint-cpp && npm run lint-ts",
"lint-cpp": "cpplint --recursive src",
"lint-ts": "balena-lint --typescript lib tests",
"prettier": "balena-lint --typescript --fix lib tests",
"readme": "jsdoc2md --template doc/README.hbs js/index.js > README.md",
"build": "node-gyp rebuild && tsc",
"build-ts": "tsc",
"prepublishOnly": "npm run build-ts && npm run readme",
"install": "prebuild-install --runtime napi || node-gyp rebuild",
"rebuild": "node-gyp rebuild"
},
"author": "Juan Cruz Viotti <[email protected]>",
"license": "Apache-2.0",
"engines": {
"node": ">=16"
},
"devDependencies": {
"@balena/lint": "^6.2.1",
"@types/bindings": "^1.5.1",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/sinon": "^10.0.13",
"chai": "^4.3.7",
"eslint": "^8.31.0",
"jsdoc-to-markdown": "^8.0.0",
"mocha": "^10.2.0",
"node-gyp": "^10.0.1",
"prebuild": "^11.0.4",
"sinon": "^15.0.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"dependencies": {
"bindings": "^1.5.0",
"debug": "^4.3.4",
"node-addon-api": "^5.0.0",
"prebuild-install": "^7.1.1"
},
"binary": {
"napi_versions": [
8
]
},
"versionist": {
"publishedAt": "2024-01-18T10:25:30.412Z"
}
}