-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
28 lines (28 loc) · 834 Bytes
/
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
{
"name": "netatmo-energy-adapter",
"version": "3.0.3",
"description": "Netatmo Energy Adapter for WebThings Gateway",
"author": "Michael Kohler <[email protected]>",
"homepage": "https://github.com/MichaelKohler/netatmo-energy-adapter",
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "https://github.com/MichaelKohler/netatmo-energy-adapter.git"
},
"main": "./src/index.js",
"engines": {
"node": ">= 16"
},
"dependencies": {
"node-fetch": "^2.6.7"
},
"scripts": {
"build": "shasum --algorithm 256 manifest.json package.json src/*.js src/views/* LICENSE README.md > SHA256SUMS && find node_modules \\( -type f -o -type l \\) -exec shasum --algorithm 256 {} \\; >> SHA256SUMS"
},
"files": [
"manifest.json",
"package.json",
"src",
"SHA256SUMS"
]
}