-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 908 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 908 Bytes
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
{
"name": "@zwave-js/firmware-integrity",
"version": "1.0.2",
"description": "Z-Wave JS Firmware integrity hash creation tool",
"publishConfig": {
"access": "public"
},
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"bin/",
"build/**/*.{js,d.ts,map}"
],
"bin": "bin/firmware-integrity.js",
"repository": "https://github.com/zwave-js/firmware-integrity",
"author": "Dominic Griesel <dominic.griesel@nabucasa.com>",
"license": "MIT",
"engines": {
"node": ">16.9.0"
},
"scripts": {
"build": "tsc",
"watch": "yarn run build --watch --pretty"
},
"packageManager": "yarn@3.2.2",
"devDependencies": {
"@tsconfig/node16": "^1.0.3",
"@types/fs-extra": "^9.0.13",
"@types/node": "16",
"typescript": "^4.7.4"
},
"dependencies": {
"@zwave-js/core": "^9.6.0",
"axios": "^0.27.2",
"fs-extra": "^10.1.0"
}
}