-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
66 lines (66 loc) · 1.85 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
{
"displayName": "Homebridge Open Sesame",
"name": "homebridge-open-sesame",
"version": "0.5.0",
"description": "Homebridge plugin for sesame locks.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/yasuoza/homebridge-open-sesame.git"
},
"bugs": {
"url": "https://github.com/yasuoza/homebridge-open-sesame/issues"
},
"engines": {
"node": ">=12",
"homebridge": ">=1.3.0"
},
"main": "dist/index.js",
"files": [
"config.schema.json",
"dist/**/*"
],
"scripts": {
"lint:eslint": "eslint src/**.ts --max-warnings=0",
"lint:prettier": "prettier --check 'src/**.ts'",
"watch": "npm run build && npm link && nodemon",
"build": "rimraf ./dist && tsc",
"prettier": "prettier -w 'src/**/*.ts'",
"homebridge": "npm run start --prefix ./homebridge --cwd ./homebridge",
"test": "jest",
"prepublishOnly": "npm run lint:prettier && npm run lint:eslint && npm run build",
"release": "release-it"
},
"keywords": [
"homebridge-plugin"
],
"dependencies": {
"@aws-sdk/client-cognito-identity": "^3.18.0",
"async-mutex": "^0.4.0",
"aws-iot-device-sdk": "^2.2.8",
"aws4-axios": "^2.4.9",
"axios": "^0.27.2",
"node-aes-cmac": "^0.1.1",
"uuid": "^9.0.0"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "4.2.1",
"@types/aws-iot-device-sdk": "2.2.7",
"@types/jest": "29.5.6",
"@types/node": "16.18.59",
"@types/uuid": "9.0.6",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"eslint": "8.52.0",
"eslint-config-prettier": "8.10.0",
"homebridge": "1.6.1",
"jest": "29.7.0",
"nodemon": "2.0.22",
"prettier": "2.8.8",
"release-it": "15.11.0",
"rimraf": "3.0.2",
"ts-jest": "29.1.1",
"ts-node": "10.9.1",
"typescript": "4.9.5"
}
}