-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.56 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
{
"name": "@balena/node-beaglebone-usbboot",
"version": "3.0.4",
"description": "Transforms BeagleBone to mass storage device",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "echo 'This is tested with a physical device'",
"start": "ts-node src/main.ts",
"format": "balena-lint --fix src",
"lint": "balena-lint src",
"build": "npm run lint && rimraf lib && tsc",
"prepare": "npm run build",
"prepublishOnly": "npm run build"
},
"files": [
"lib/**/*",
"blobs",
"README.md",
"CHANGELOG.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/balena-io-modules/node-beaglebone-usbboot.git"
},
"keywords": [
"beaglebone",
"usbboot",
"usb",
"am335x",
"mass storage"
],
"author": "Balena Ltd. <[email protected]>",
"contributors": [
"Parthiban Gandhi <[email protected]>"
],
"license": "Apache-2.0",
"dependencies": {
"binary-parser-encoder": "^1.4.5",
"debug": "^4.3.1",
"endian-toggle": "0.0.0",
"schemapack": "^1.4.2",
"usb": "^2.5.2"
},
"devDependencies": {
"@balena/lint": "^6.2.0",
"@types/debug": "4.1.12",
"@types/node": "^18.0.0",
"rimraf": "^4.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"bugs": {
"url": "https://github.com/balena-io-modules/node-beaglebone-usbboot/issues"
},
"homepage": "https://github.com/balena-io-modules/node-beaglebone-usbboot#readme",
"versionist": {
"publishedAt": "2024-01-02T19:47:09.102Z"
},
"engines": {
"node": ">=16"
}
}