-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.78 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
{
"name": "turnip-bot",
"version": "1.0.7",
"description": "Track turnip prices for Animal Crossing: New Horizons!",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"reddit": "tsc --declaration && node dist/src/scripts/index.js reddit",
"build": "tsc --declaration",
"test": "mocha -r ts-node/register tst/**/*.spec.ts",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"lint": "tslint -p tsconfig.json",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/anthonykrivonos/turnip-bot.git"
},
"keywords": [
"animal",
"crossing",
"turnip",
"bot",
"reddit",
"discord"
],
"author": "Anthony Krivonos",
"license": "MIT",
"bugs": {
"url": "https://github.com/anthonykrivonos/turnip-bot/issues"
},
"homepage": "https://github.com/anthonykrivonos/turnip-bot#readme",
"devDependencies": {
"typescript": "^3.9.3"
},
"dependencies": {
"@types/chai": "^4.2.0",
"@types/mocha": "^5.2.7",
"@types/node-cron": "^2.0.3",
"@types/node-fetch": "^2.5.7",
"@types/selenium-webdriver": "^4.0.9",
"autocorrect": "^1.2.0",
"chai": "^4.2.0",
"chromedriver": "^83.0.0",
"compromise": "^13.2.0",
"compromise-numbers": "^1.0.0",
"mocha": "^6.2.0",
"node-cron": "^2.0.3",
"node-fetch": "^2.6.0",
"prettier": "^1.18.2",
"selenium-webdriver": "^4.0.0-alpha.7",
"skedula": "^1.0.3",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"tslint-etc": "~1.6.0"
}
}