-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.33 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "reddit-poster",
"version": "0.0.0",
"description": "Reddit Posting Bot",
"main": "index.js",
"bin": "./index.js",
"scripts": {
"start": "node .",
"dev": "nodemon .",
"test": "nodemon test.js",
"lint": "eslint . --fix",
"prett": "prettier . --write",
"clean": "rm ./logs -rf"
},
"author": "Ambratolm <[email protected]>",
"license": "MIT",
"dependencies": {
"chalk": "^4.1.2",
"check-types": "^11.1.2",
"dayjs": "^1.10.8",
"dotenv": "^16.0.0",
"dumper.js": "^1.3.1",
"log4js": "^6.4.2",
"ora": "^5.4.1"
},
"devDependencies": {
"@babel/core": "^7.17.7",
"@babel/eslint-parser": "^7.17.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.2.0",
"prettier": "^2.5.1"
},
"engines": {
"node": ">=13.14.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ambratolm/reddit-poster.git"
},
"keywords": [
"reddit",
"api",
"bot",
"schedule",
"post"
],
"bugs": {
"url": "https://github.com/Ambratolm/reddit-poster/issues"
},
"homepage": "https://github.com/Ambratolm/reddit-poster#readme"
}