-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.18 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
{
"name": "miner-waker-lambda",
"version": "1.0.0",
"description": "Restart automatically miners using ethos API and TpLink switchers using AWS Lambda",
"main": "src/main.js",
"scripts": {
"start": "lambda-local -l src/main.js -h handler -e src/event-data.js -t 10",
"test": "jest",
"build": "gulp build",
"deploy": "npm run build && aws lambda update-function-code --zip-file fileb://dist/miner-waker-lambda.zip --function-name"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ivandelabeldad/miner-waker-lambda.git"
},
"keywords": [
"ethos",
"tplink",
"aws",
"lambda"
],
"author": "Ivan de la Beldad Fernandez <ivandelabeldad@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ivandelabeldad/miner-waker-lambda/issues"
},
"homepage": "https://github.com/ivandelabeldad/miner-waker-lambda#readme",
"dependencies": {
"js-yaml": "^3.10.0",
"request": "^2.83.0",
"request-promise-native": "^1.0.5"
},
"devDependencies": {
"gulp": "^4.0.0",
"gulp-clean": "^0.4.0",
"gulp-gzip": "^1.4.2",
"gulp-install": "^1.1.0",
"gulp-zip": "^4.1.0",
"lambda-local": "^1.4.5"
}
}