-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.09 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": "firenearby",
"version": "1.0.0",
"description": "get nearby fires and send messages if relevant",
"main": "get-latest-fires.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "ncc build src/action.js -o dist",
"get-latest-fires": "node -r dotenv/config src/get-latest-fires.js",
"identify-matches": "node -r dotenv/config src/identify-matches.js",
"wait": "node src/wait.js",
"update-timestamp": "node src/update-timestamp.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/caseymm/firenearby.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/caseymm/firenearby/issues"
},
"homepage": "https://github.com/caseymm/firenearby#readme",
"devDependencies": {
"aws-sdk": "^2.986.0",
"node-fetch": "^3.0.0"
},
"dependencies": {
"@turf/distance": "^6.5.0",
"@turf/helpers": "^6.5.0",
"dateformat": "^4.5.1",
"dotenv": "^10.0.0",
"playwright": "^1.14.1",
"playwright-chromium": "^1.49.1",
"twilio": "^3.75.1"
}
}