-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 1.07 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
{
"name": "@modcord/message-parser",
"version": "1.0.1",
"description": "A not so fast and not so efficient parser using regular expressions for discord messages, supports custom emojis and spoilers. ",
"main": "lib/index.js",
"scripts": {
"build": "tsc --build tsconfig.json",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"test": "jest --config jestconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ModCord/message-parser.git"
},
"keywords": [
"discord",
"emojis",
"custom-emojis",
"discord-emojis",
"parser",
"emoji-parser",
"message-parser",
"message"
],
"author": "MrAugu#7917",
"license": "MIT",
"bugs": {
"url": "https://github.com/ModCord/message-parser/issues"
},
"homepage": "https://github.com/ModCord/message-parser#readme",
"devDependencies": {
"@types/jest": "^26.0.22",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.5.4",
"tslint": "^6.1.3",
"typescript": "^4.2.4"
}
}