-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 892 Bytes
/
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
{
"name": "purpleair-notify",
"version": "1.0.0",
"description": "Use GitHub Actions to receive an email whenever PurpleAir sensor(s) show AQI air quality PM2.5 as unhealthy.",
"main": "dist/index.js",
"scripts": {
"scrape": "ts-node scrape.ts",
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alanhamlett/purpleair-notify.git"
},
"keywords": ["purpleair", "air-quality"],
"author": "Alan Hamlett <alan.hamlett@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/alanhamlett/purpleair-notify/issues"
},
"homepage": "https://github.com/alanhamlett/purpleair-notify#readme",
"dependencies": {
"@actions/core": "^1.2.6",
"@types/node": "^14.11.8",
"axios": "^0.20.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
}
}