-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
74 lines (74 loc) · 1.46 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@tuyapi/driver",
"version": "0.0.6",
"description": "⚡️ next-gen driver for Tuya devices",
"keywords": [
"🚗",
"tuya",
"iot",
"plug",
"bulb",
"smart",
"switch",
"api",
"driver",
"socket",
"protocol"
],
"main": "dist/index.js",
"files": [
"dist/"
],
"scripts": {
"lint": "xo",
"lint-fix": "xo --fix",
"test": "npm run lint",
"babel": "babel dist -d dist",
"build": "tsc && npm run babel",
"watch": "tsc --watch",
"prepack": "npm run build",
"travis": "npm test && npm run build"
},
"author": "Max Isom <[email protected]> (https://maxisom.me/)",
"license": "MIT",
"devDependencies": {
"@types/debug": "4.1.5",
"@typescript-eslint/eslint-plugin": "2.12.0",
"@typescript-eslint/parser": "2.12.0",
"babel-cli": "6.26.0",
"babel-preset-env": "1.7.0",
"eslint-config-xo-typescript": "0.23.0",
"husky": "3.1.0",
"typescript": "3.7.4",
"xo": "0.25.3"
},
"xo": {
"space": true,
"extends": "xo-typescript",
"rules": {
"@typescript-eslint/indent": [
"error",
2,
{
"SwitchCase": 1
}
]
},
"extensions": [
"ts"
]
},
"dependencies": {
"core-js": "^3.2.1",
"debug": "^4.1.1",
"regenerator-runtime": "^0.13.3"
},
"husky": {
"hooks": {
"pre-commit": "npm test && npm run build"
}
},
"publishConfig": {
"access": "public"
}
}