-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.15 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
{
"name": "insteon-custom-alerts",
"version": "1.0.0",
"description": "monitor insteon sensors and send alerts when something of interset happens.",
"dependencies": {
"aws-sdk": "^2.1.8",
"moment": "^2.18.1",
"node-fetch": "^1.7.1"
},
"devDependencies": {
"@types/aws-lambda": "0.0.14",
"@types/node": "^8.0.2",
"@types/node-fetch": "^1.6.7",
"archiver": "^1.3.0",
"cross-env": "^5.0.1",
"ts-loader": "^2.2.2",
"tslint": "^5.5.0",
"tslint-loader": "^3.5.3",
"typescript": "^2.4.1",
"webpack": "^3.0.0"
},
"scripts": {
"prestart": "webpack",
"prepublish": "webpack",
"setup_s3": "cross-env AWS_PROFILE=insteon-alerts-account node build/s3_setup.js",
"publish": "cross-env AWS_PROFILE=insteon-alerts-account node build/publish_lambda.js",
"start": "cross-env AWS_PROFILE=insteon-alerts-account node build/lambda_test.js",
"test": "echo \"Error: no test specified\" && exit 1",
"list": "node build/device_list.js"
},
"repository": {
"type": "git",
"url": "https://github.com/smandava/insteon-custom-alerts.git"
},
"keywords": [],
"author": "",
"license": "ISC"
}