-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.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": "twitter-openweathermap",
"version": "2.1.0",
"private": true,
"description": "Publish OpenWeatherMap API data to Twitter",
"main": "src/app.js",
"scripts": {
"start": "NODE_ENV=production node .",
"dev": "nodemon .",
"lint": "eslint --ext .js .",
"test": "mocha test",
"test:coverage": "nyc mocha test",
"doc-view": "jsdoc --private -c ./conf_jsdoc.json -r && live-server --host=localhost --port=4400 --open=doc/ --ignore=node_modules/,test/*,src/*,.git/,.",
"purge": "rm -fr ./doc && rm -fr ./logs && rm -fr ./.nyc_output"
},
"keywords": [
"Twitter",
"OpenWeatherMap",
"bot"
],
"author": "Dídac García (https://didaquis.github.io/)",
"license": "MIT",
"engines": {
"node": "^10.18.0"
},
"dependencies": {
"dotenv": "^10.0.0",
"log4js": "^6.7.0",
"moment-timezone": "^0.5.37",
"node-fetch": "^2.6.7",
"twitter-api-v2": "^1.15.0"
},
"devDependencies": {
"chai": "^4.3.6",
"jsdoc": "^3.6.11",
"live-server": "^1.2.2",
"mocha": "^9.2.2",
"nodemon": "^2.0.20",
"nyc": "^15.1.0",
"sinon": "^11.1.2"
}
}