-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.1 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
{
"name": "jablotron-puppeteer",
"version": "0.0.1",
"description": "Automate the use of Jablotron Alarm with Puppeteer for use with Alexa, Google Home, etc.",
"keywords": [
"jablotron",
"javascript",
"nodejs",
"express",
"api",
"server"
],
"homepage": "https://github.com/DomResc/jablotron-puppeteer#readme",
"bugs": {
"url": "https://github.com/DomResc/jablotron-puppeteer/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DomResc/jablotron-puppeteer.git"
},
"license": "MIT",
"author": "Domenico Rescigno",
"main": "index.js",
"scripts": {
"dev": "nodemon index.js",
"deploy": "node index.js",
"test": "eslint --fix --format table ./"
},
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1",
"puppeteer": "^5.3.1"
},
"devDependencies": {
"eslint": "^7.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"nodemon": "^2.0.5"
}
}