-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
99 lines (99 loc) · 3.38 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "homebridge-schedule",
"version": "1.0.136",
"description": "Scheduled, repeatable triggers for Homebridge automation with HomeKit",
"repository": {
"type": "git",
"url": "git+https://github.com/kbrashears5/typescript-homebridge-schedule.git"
},
"bugs": {
"url": "https://github.com/kbrashears5/typescript-homebridge-schedule/issues"
},
"homepage": "https://github.com/kbrashears5/typescript-homebridge-schedule#readme",
"author": "Kevin Brashears",
"license": "MIT",
"keywords": [
"homebridge-plugin",
"homebridge",
"typescript",
"plugin",
"schedule",
"repeat",
"automation"
],
"main": "dist/schedule-accessory.js",
"dependencies": {
"cron": "~2.0.0",
"typescript-helper-functions": "~1.0.158"
},
"devDependencies": {
"@types/cron": "~2.0.0",
"@types/jest": "~28.1.0",
"@types/node": "~17.0.39",
"@typescript-eslint/eslint-plugin": "~5.27.0",
"@typescript-eslint/parser": "~5.27.0",
"eslint": "~8.17.0",
"eslint-config-prettier": "~8.5.0",
"eslint-plugin-jest": "~26.4.6",
"eslint-plugin-prettier": "~4.0.0",
"homebridge": "~1.4.1",
"jest": "~28.1.0",
"jest-junit": "~13.2.0",
"node-git-hooks": "~1.0.6",
"npm-run-all": "~4.1.5",
"prettier": "~2.6.2",
"rimraf": "~3.0.2",
"ts-jest": "~28.0.4",
"typescript": "~4.7.3"
},
"files": [
"LICENSE",
"dist",
"config.schema.json"
],
"jest": {
"preset": "ts-jest",
"reporters": [
"default",
"jest-junit"
],
"rootDir": "src",
"testEnvironment": "node",
"coverageReporters": [
"cobertura"
]
},
"scripts": {
"build": "tsc",
"clean": "rimraf ./dist",
"format": "prettier --write .",
"lint": "eslint -c .eslintrc.yml \"*/**\"",
"prebuild": "npm run clean && npm run format && npm run lint",
"prep": "npm run update:npm-run-all && npm run update && node-git-hooks",
"test": "jest --passWithNoTests --ci --coverage",
"update:cron": "npm i cron@latest",
"update:eslint-config-prettier": "npm i eslint-config-prettier@latest --save-dev",
"update:eslint-plugin-jest": "npm i eslint-plugin-jest@latest --save-dev",
"update:eslint-plugin-prettier": "npm i eslint-plugin-prettier@latest --save-dev",
"update:eslint": "npm i eslint@latest --save-dev",
"update:homebridge": "npm i homebridge@latest --save-dev",
"update:jest-junit": "npm i jest-junit@latest --save-dev",
"update:jest": "npm i jest@latest --save-dev",
"update:node-git-hooks": "npm i node-git-hooks@latest --save-dev",
"update:npm-run-all": "npm i npm-run-all@latest --save-dev",
"update:prettier": "npm i prettier@latest --save-dev",
"update:rimraf": "npm i rimraf@latest --save-dev",
"update:ts-jest": "npm i ts-jest@latest --save-dev",
"update:types-cron": "npm i @types/cron@latest --save-dev",
"update:types-jest": "npm i @types/jest@latest --save-dev",
"update:types-node": "npm i @types/node@latest --save-dev",
"update:typescript-eslint-parser": "npm i @typescript-eslint/parser@latest --save-dev",
"update:typescript-eslint-plugin": "npm i @typescript-eslint/eslint-plugin@latest --save-dev",
"update:typescript-helper-functions": "npm i typescript-helper-functions@latest",
"update:typescript": "npm i typescript@latest --save-dev",
"update": "run-s update:*"
},
"engines": {
"homebridge": ">=1.0.0"
}
}