-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.11 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
42
{
"name": "iot-weather",
"version": "1.0.1",
"description": "Iot weather provider simulator",
"main": "./src/app.js",
"scripts": {
"start": "node ./src/app.js",
"start:local": "node -r dotenv/config ./src/app.js",
"test": "mocha -r dotenv/config ./test/* --exit",
"test-cov": "nyc --reporter=text npm test",
"test-cov-html": "nyc --reporter=html npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Weather-Forecast-Aggregator/iot-weather.git"
},
"keywords": [
"iot",
"weather",
"forecast",
"provider",
"simulator"
],
"author": "Daniele Tentoni <daniele.tentoni2@studio.unibo.it>",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/Weather-Forecast-Aggregator/iot-weather/issues"
},
"homepage": "https://github.com/Weather-Forecast-Aggregator/iot-weather#readme",
"dependencies": {
"dot-env": "^0.0.1",
"express": "^4.17.1"
},
"devDependencies": {
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"dotenv": "^10.0.0",
"mocha": "^9.0.2",
"nyc": "^15.1.0",
"supertest": "^6.1.4"
}
}