forked from oiva/homebridge-air-quality-file
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.32 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
{
"name": "homebridge-air-quality-file",
"version": "1.1.0",
"description": "Homebridge plugin to simulate an air quality sensor by reading values from file",
"main": "dist/index.js",
"scripts": {
"dev": "rollup -c -w",
"build": "rollup -c",
"prepublishOnly": "npm run build",
"test": "jest"
},
"keywords": [
"homebridge-plugin",
"sds011",
"Air quality",
"AQI"
],
"author": "Oiva Eskola <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=0.12.0",
"homebridge": ">=0.4.0"
},
"devDependencies": {
"@babel/core": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"@babel/preset-typescript": "^7.8.3",
"@types/jest": "^25.1.4",
"@types/node": "^13.9.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"jest": "^25.1.0",
"prettier": "^1.19.1",
"rollup": "^2.0.6",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-node-resolve": "^5.2.0"
},
"prettier": {
"tabWidth": 2,
"semi": false,
"singleQuote": true
},
"dependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/oiva/homebridge-air-quality-file.git"
},
"bugs": {
"url": "https://github.com/oiva/homebridge-air-quality-file/issues"
},
"homepage": "https://github.com/oiva/homebridge-air-quality-file#readme"
}