-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
41 lines (41 loc) · 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
{
"name": "PiCast",
"version": "0.0.1",
"description": "Raspberry Pi turns on led lights to indicate the daily weather forecast by geolocation",
"main": "index.js",
"scripts": {
"test": "jest --coverage --verbose",
"start": "node lib/light-display/controller.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Pi-Cast/PiCast.git"
},
"keywords": [
"weather",
"Raspberry-Pi",
"PiCast"
],
"author": "Paula MookerJee, Kyle Richey, Ashkaan Jaberi, Iryna Maslova",
"license": "MIT",
"bugs": {
"url": "https://github.com/Pi-Cast/PiCast/issues"
},
"homepage": "https://github.com/Pi-Cast/PiCast#readme",
"dependencies": {
"bluebird": "^3.5.5",
"colors": "^1.3.3",
"dotenv": "^4.0.0",
"mongoose": "^5.7.5",
"node-cron": "^1.2.1",
"prompt": "^1.0.0",
"rpio": "^0.9.23",
"superagent": "^3.8.3"
},
"devDependencies": {
"assert": "^1.4.1",
"expect": "^25.0.0",
"jest": "^25.0.0",
"sinon": "^7.4.2"
}
}