-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
114 lines (114 loc) · 3.14 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "etcher-sdk",
"version": "9.1.2",
"description": "Etcher SDK",
"author": "Balena Ltd <[email protected]>",
"main": "build/index.js",
"license": "Apache-2.0",
"types": "build/index.d.ts",
"scripts": {
"flowzone-preinstall": "sudo apt-get update && sudo apt-get install -y libudev-dev",
"test": "npm run lint && mocha -r ts-node/register tests/**/*.spec.ts",
"prettier": "balena-lint --fix lib typings examples tests",
"lint": "balena-lint lib typings examples",
"lint:fix": "balena-lint --fix lib typings examples",
"build": "tsc",
"doc": "typedoc --readme none --plugin typedoc-plugin-markdown --out doc lib && npm run sed",
"sed": "sed -i'.bak' 's|'$(pwd)'||g' $(find doc -type f) && rimraf doc/*.bak doc/**/*.bak",
"prepublish": "npm run build"
},
"files": [
"build",
"typings"
],
"keywords": [
"etcher",
"sdk",
"flash",
"flashing",
"disk",
"disk image",
"sd-card",
"imager",
"img",
"iso",
"dmg",
"balena",
"balenaos"
],
"homepage": "https://github.com/balena-io-modules/etcher-sdk",
"repository": {
"type": "git",
"url": "https://github.com/balena-io-modules/etcher-sdk.git"
},
"bugs": {
"url": "https://github.com/balena-io-modules/etcher-sdk/issues"
},
"dependencies": {
"@balena/node-beaglebone-usbboot": "^3.0.0",
"@balena/udif": "^1.1.2",
"@ronomon/direct-io": "^3.0.1",
"aws4-axios": "^3.3.0",
"axios": "^1.6.0",
"axios-http2-adapter": "^1.0.1",
"balena-image-fs": "^7.2.0",
"blockmap": "^4.0.3",
"check-disk-space": "^3.4.0",
"cyclic-32": "^1.1.0",
"debug": "^4.3.4",
"drivelist": "^12.0.0",
"file-disk": "^8.0.1",
"file-type": "^16.0.0",
"glob": "^10.3.10",
"gzip-stream": "^2.0.0",
"lzma-native": "^8.0.6",
"minimatch": "^9.0.3",
"mountutils": "^1.3.20",
"node-raspberrypi-usbboot": "1.1.0",
"outdent": "^0.8.0",
"partitioninfo": "^6.0.2",
"rwmutex": "^1.0.0",
"tslib": "^2.0.0",
"unbzip2-stream": "github:balena-io-modules/unbzip2-stream#4a54f56a25b58950f9e4277c56db2912d62242e7",
"unzip-stream": "^0.3.1",
"xxhash-addon": "^2.0.1",
"yauzl": "^2.9.2",
"zip-part-stream": "^2.0.0"
},
"optionalDependencies": {
"winusb-driver-generator": "^2.0.0"
},
"devDependencies": {
"@balena/lint": "^7.2.1",
"@types/bluebird": "^3.5.23",
"@types/chai": "^4.1.4",
"@types/cli-spinner": "^0.2.0",
"@types/crc": "^3.4.0",
"@types/debug": "4.1.12",
"@types/file-type": "^10.9.1",
"@types/lodash": "^4.14.108",
"@types/mocha": "^10.0.3",
"@types/node": "^20.0.0",
"@types/progress": "^2.0.1",
"@types/sinon": "^17.0.0",
"@types/yargs": "^17.0.29",
"@types/yauzl": "^2.9.0",
"chai": "^4.1.2",
"cli-spinner": "^0.2.8",
"mocha": "^10.2.0",
"progress": "^2.0.0",
"rimraf": "^5.0.5",
"sinon": "^17.0.0",
"ts-node": "^10.9.1",
"typedoc": "^0.25.3",
"typedoc-plugin-markdown": "^3.16.0",
"typescript": "^5.2.2",
"yargs": "^17.7.2"
},
"engines": {
"node": ">=18 <22"
},
"versionist": {
"publishedAt": "2024-10-09T08:52:13.783Z"
}
}