This repository has been archived by the owner on Oct 15, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
84 lines (84 loc) · 2.34 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "emoji-stealer",
"version": "1.2.2",
"description": "Copy another discord server's emojis.",
"main": "build/index.js",
"scripts": {
"commit": "npx git-cz",
"start": "node .",
"cs": "yarn run build && yarn start",
"build": "yarn run clean && yarn run build:ts",
"build:ts": "tsc -p ./",
"test": "yarn run lint",
"startmon": "ts-node-dev --respawn ./src/index.ts",
"lint": "eslint --ext .js,.ts --ignore-path .gitignore src/",
"lint:fix": "yarn run lint --fix",
"watch": "tsc -w -p ./",
"clean": "rimraf ./build && mkdir build",
"preversion": "yarn test",
"postversion": "git push && git push --tags"
},
"dependencies": {
"@tmuniversal/counter": "^1.0.4",
"@tmuniversal/weeb-wrapper": "^0.3.4",
"@tmware/status-rotate": "^1.0.5",
"app-root-path": "^3.0.0",
"axios": "0.19.2",
"countapi-js": "^1.0.1",
"dblapi.js": "^2.4.1",
"discord-akairo": "^8.1.0",
"discord.js": "^12.3.1",
"imagemin": "^7.0.1",
"imagemin-gifsicle": "^7.0.0",
"imagemin-jpegtran": "^7.0.0",
"imagemin-pngquant": "^9.0.1",
"moment": "^2.29.1",
"moment-duration-format": "^2.3.2"
},
"devDependencies": {
"@tmuniversal/ts": "^1.1.0",
"@tmware/eslint-config": "^1.0.0",
"@tmware/prettier-config": "^1.0.1",
"@types/app-root-path": "^1.2.4",
"@types/debug": "^4.1.5",
"@types/imagemin": "^7.0.0",
"@types/imagemin-gifsicle": "^7.0.0",
"@types/imagemin-jpegtran": "^5.0.0",
"@types/moment-duration-format": "^2.2.2",
"@types/node": "^14.11.8",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.11.0",
"husky": "^4.3.0",
"rimraf": "^3.0.2",
"ts-node-dev": "^1.0.0-pre.63",
"typescript": "^4.0.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TMUniversal/Emoji-Stealer.git"
},
"keywords": [
"discord",
"discord.js",
"bot",
"discord",
"bot"
],
"author": "TMUniversal",
"license": "MIT",
"bugs": {
"url": "https://github.com/TMUniversal/Emoji-Stealer/issues"
},
"homepage": "https://github.com/TMUniversal/Emoji-Stealer#readme",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "yarn run lint:fix && yarn run lint",
"pre-push": "yarn test"
}
}
}