-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
66 lines (66 loc) · 1.39 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
57
58
59
60
61
62
63
64
65
66
{
"name": "juicy-coupon-bot",
"version": "2.1.0",
"description": "Coupon code generator and distribution bot for OWASP Juice Shop",
"homepage": "http://owasp-juice.shop",
"bugs": {
"url": "https://github.com/juice-shop/juicy-coupon-bot/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/juice-shop/juicy-coupon-bot.git"
},
"license": "MIT",
"author": "Bjoern Kimminich <[email protected]> (https://kimminich.de)",
"main": "index.js",
"bin": {
"juicy-coupon-bot": "bin/juicy-coupon-bot.js"
},
"scripts": {
"lint": "standard",
"lint:fix": "standard --fix",
"test": "nyc mocha test"
},
"nyc": {
"all": true,
"include": [
"lib/*.js",
"index.js"
],
"report-dir": "./build/reports/coverage",
"reporter": [
"lcov",
"text-summary"
]
},
"dependencies": {
"@atproto/api": "^0.13.17",
"colors": "^1.4.0",
"masto": "^6.10.1",
"reddit-wrapper-v2": "^1.1.6",
"sync-request": "^6.1.0",
"winston": "^3.2.1"
},
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"mocha": "^7.2.0",
"nyc": "^15.1.0",
"standard": "^14.3.4"
},
"engines": {
"node": "18 - 22"
},
"preferGlobal": true,
"standard": {
"env": [
"node",
"mocha"
],
"globals": [
"it",
"describe",
"beforeEach"
]
}
}