-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
60 lines (60 loc) · 1.44 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
52
53
54
55
56
57
58
59
60
{
"name": "homewads-api",
"version": "1.3.0",
"description": "Home API to Control Xiaomi Home Appliance",
"main": "index.js",
"scripts": {
"start": "nodemon -r esm index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "./node_modules/.bin/eslint ./src --ext .js --fix"
},
"pre-commit": [
"lint"
],
"repository": {
"type": "git",
"url": "git+https://github.com/victorwads/homewads-api.git"
},
"keywords": [
"home",
"vaccum",
"xiaomi",
"mihome",
"automation",
"house"
],
"author": "@victorwads",
"license": "ISC",
"bugs": {
"url": "https://github.com/victorwads/homewads-api/issues"
},
"homepage": "https://github.com/victorwads/homewads-api#readme",
"_moduleAliases": {
"@helpers": "src/helpers"
},
"esm": {
"await": true
},
"dependencies": {
"cors": "^2.8.5",
"esm": "^3.2.25",
"express": "^4.17.1",
"express-validator": "5.0.1",
"miio": "git://github.com/victorwads/miio.git#vw0.3",
"module-alias": "^2.2.0",
"morgan": "^1.9.1",
"node-fetch": "^2.6.0",
"onesignal-node": "^2.1.0",
"serve-index": "^1.9.1"
},
"devDependencies": {
"eslint": "^6.0.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"nodemon": "^1.19.1",
"pre-commit": "^1.2.2"
}
}