-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
44 lines (44 loc) · 1019 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "hydrawise-api",
"version": "1.2.1",
"description": "Library for accessing the Hydrawise API via the cloud or directly on the local network",
"repository": {
"type": "git",
"url": "https://github.com/paulmolluzzo/hydrawise-api.git"
},
"main": "dist/index.js",
"type": "commonjs",
"types": "./dist/index.d.ts",
"keywords": [
"hydrawise",
"api",
"iot",
"sprinklers",
"hunter",
"hunter industries"
],
"scripts": {
"clean": "rimraf ./dist",
"build": "rimraf ./dist && tsc",
"prepublishOnly": "npm run build",
"postpublish": "npm run clean",
"test": "echo \"Error: no test specified\" && exit 1"
},
"contributors": [
"Martijn Dierckx",
"Paul Molluzzo (https://paul.molluzzo.com)"
],
"license": "MIT",
"engines": {
"node": ">=16.0.0",
"npm": ">=8.1.0"
},
"dependencies": {
"axios": "^1.4.0"
},
"devDependencies": {
"@types/node": "^18.16.8",
"rimraf": "^5.0.0",
"typescript": "^5.0.4"
}
}