-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.16 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.16 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
{
"name": "node-raspberrypi-usbboot",
"version": "1.1.9",
"description": "Transforms Raspberry Pi Compute Modules and Zeros to mass storage devices.",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"prettier": "balena-lint --fix --typescript typings lib",
"lint": "balena-lint --typescript lib/*.ts",
"build": "npm run lint && rimraf build && tsc",
"prepublish": "npm run build",
"test": "echo 'this is not a test'"
},
"files": [
"build/index.js",
"build/index.d.ts",
"build/index.js.map",
"blobs",
"README.md",
"CHANGELOG.md"
],
"author": "Alexis Svinartchouk <alexis@balena.io>",
"repository": {
"type": "git",
"url": "https://github.com/balena-io-modules/node-raspberrypi-usbboot.git"
},
"license": "Apache-2.0",
"dependencies": {
"debug": "^4.3.4",
"usb": "^2.12.1"
},
"devDependencies": {
"@balena/lint": "8.2.8",
"@types/debug": "^4.1.12",
"@types/node": "^20.12.12",
"node-gyp-build": "^4.8.1",
"rimraf": "^6.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"versionist": {
"publishedAt": "2026-06-01T00:15:36.951Z"
}
}