-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
92 lines (92 loc) · 2.91 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
{
"name": "node-deepstackai-trigger",
"version": "5.8.7",
"description": "Detects motion using DeepStack AI and calls registered triggers based on trigger rules.",
"main": "dist/src/main.js",
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsc",
"lint": "npm run lint:eslint && npm run lint:markdown",
"lint:eslint": "eslint -c .eslintrc.json --ext .ts src/",
"lint:markdown": "node ./node_modules/markdownlint-cli/markdownlint.js **/*.md --ignore node_modules",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\" \"tests/**/*.ts\" \"tests/**/*.js\"",
"prepare": "npm run build",
"prepublishOnly": "npm run lint",
"postversion": "git push",
"start": "node dist/src/main.js",
"test": "jest",
"webpack": "npx webpack --mode=production",
"webpack:dev": "npx webpack --mode=development"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neile/node-deepstackai-trigger"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/neile/node-deepstackai-trigger/Issues"
},
"homepage": "https://github.com/neile/node-deepstackai-trigger#readme",
"dependencies": {
"ajv": "^6.12.4",
"ajv-keywords": "^3.4.1",
"async-mqtt": "^2.6.0",
"bufferutil": "^4.0.1",
"chalk": "^3.0.0",
"chokidar": "^3.4.2",
"commander": "^4.1.1",
"emitter": "^0.0.2",
"express": "^4.17.1",
"glob": "^7.1.6",
"http-terminator": "^2.0.3",
"jsonc-parser": "^2.2.1",
"moment": "^2.29.4",
"mustache": "^4.0.1",
"node-telegram-bot-api": "^0.50.0",
"pureimage": "^0.2.1",
"pushover-notifications": "^1.2.2",
"request": "^2.88.2",
"request-promise-native": "^1.0.8",
"safe-regex": "^2.1.1",
"serve-index": "^1.9.1",
"utf-8-validate": "^5.0.2"
},
"devDependencies": {
"@types/ajv-keywords": "^3.4.0",
"@types/babel__core": "^7.1.14",
"@types/express": "^4.17.6",
"@types/glob": "^7.1.3",
"@types/http-terminator": "^2.0.1",
"@types/jest": "^25.2.3",
"@types/mkdirp": "^1.0.1",
"@types/mustache": "^4.0.1",
"@types/node": "^13.13.12",
"@types/node-telegram-bot-api": "^0.40.3",
"@types/request": "^2.48.5",
"@types/request-promise-native": "^1.0.17",
"@types/safe-regex": "^1.1.2",
"@types/serve-index": "^1.7.30",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/eslint-plugin-tslint": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-notice": "^0.9.10",
"file-loader": "^6.0.0",
"jest": "^26.4.0",
"jest-cli": "^26.4.0",
"markdownlint-cli": "^0.32.1",
"prettier": "^1.19.1",
"ts-jest": "^26.2.0",
"ts-loader": "^7.0.5",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.9.7",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
}
}