-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
85 lines (85 loc) · 2.75 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
85
{
"name": "universal-emoji-parser",
"version": "2.0.34",
"description": "This tool allow parse unicode and emoji codes to html images using emojilib && Twemoji CDN",
"keywords": [
"emoji",
"parser",
"transform",
"slack",
"twitter",
"github",
"emoji-parser",
"emoji parser",
"unicode",
"emoji unicode",
"shortcode",
"emoji shortcode",
"slack",
"discord",
"google-chat",
"google chat",
"microsoft-teams",
"microsoft teams"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"eslint:check": "eslint --ext .ts --ignore-path .gitignore .",
"eslint:fix": "eslint --ext .ts --fix --ignore-path .gitignore .",
"prettier:check": "prettier -c --ignore-path .gitignore '**/*.{css,html,js,ts,json,md,yaml,yml}' '!package.json'",
"prettier:fix": "prettier --write --ignore-path .gitignore '**/*.{css,html,js,ts,json,md,yaml,yml}' '!package.json'",
"test": "mocha --require ts-node/register test/**.ts --timeout 25000 --colors",
"test:watch": "mocha -w --watch-extensions ts --require ts-node/register --watch-files src,test test/**.ts --timeout 25000 --colors",
"release": "npm version patch -m \"[🤖 DailyBot] New release to v%s launched 🚀\"",
"start": "node dist/index.js",
"dev": "nodemon src/index.ts",
"build": "webpack --mode production --progress",
"build:dev": "webpack --mode development --progress",
"build:tsc": "tsc --build tsconfig.json",
"ncu:check": "ncu",
"ncu:upgrade": "ncu -u"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DailyBotHQ/universal-emoji-parser.git"
},
"author": "DailyBot <developers@dailybot.com> (https://dailybot.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/DailyBotHQ/universal-emoji-parser/issues",
"email": "developers@dailybot.com"
},
"homepage": "https://github.com/DailyBotHQ/universal-emoji-parser#readme",
"dependencies": {
"@twemoji/parser": "15.1.1"
},
"devDependencies": {
"@types/chai": "5.0.1",
"@types/mocha": "10.0.10",
"@types/node": "22.10.6",
"@typescript-eslint/eslint-plugin": "8.20.0",
"@typescript-eslint/parser": "8.20.0",
"chai": "4.4.1",
"clean-webpack-plugin": "4.0.0",
"emojilib": "4.0.1",
"eslint": "8.57.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-config-prettier": "10.0.1",
"eslint-webpack-plugin": "4.2.0",
"mocha": "11.0.1",
"nodemon": "3.1.9",
"ts-loader": "9.5.2",
"ts-node": "10.9.2",
"typescript": "5.7.3",
"unicode-emoji-json": "0.8.0",
"webpack": "5.97.1",
"webpack-cli": "6.0.1",
"prettier": "3.4.2",
"npm-check-updates": "17.1.13"
},
"engines": {
"node": "20.16.0"
}
}