-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.11 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
{
"name": "vproweatherjs",
"version": "0.0.4",
"description": "javascript/typescript interface to the vproweather driver",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"watch": "npx tsc --watch",
"start": "cd ./dist && node",
"lint": "npx eslint . --ext .js,.jsx,.ts,.tsx"
},
"repository": {
"type": "git",
"url": "git+https://github.com/harrydehix/vproweatherjs.git"
},
"keywords": [
"vproweather",
"Vantage Pro 2",
"Vantage",
"weather",
"weather station"
],
"author": "Henri Hollmann",
"license": "ISC",
"bugs": {
"url": "https://github.com/harrydehix/vproweatherjs/issues"
},
"homepage": "https://github.com/harrydehix/vproweatherjs#readme",
"dependencies": {
"await-exec": "^0.1.2"
},
"devDependencies": {
"@types/node": "^15.12.5",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"eslint": "^7.29.0",
"ts-node": "^10.0.0",
"typescript": "^4.3.4"
}
}