-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.54 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
{
"devDependencies": {
"@types/jest": "29.5.12",
"@types/node": "20.16.11",
"@typescript-eslint/eslint-plugin": "7.7.1",
"eslint": "8.57.0",
"eslint-config-love": "47.0.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-n": "17.2.1",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-simple-import-sort": "12.1.0",
"htmlparser2": "9.1.0",
"jest": "29.7.0",
"ts-jest": "29.1.2",
"tsup": "8.0.2",
"typescript": "5.6.2"
},
"name": "unicode-emoji-utils",
"description": "A collection of utilities for emojis",
"keywords": [
"unicode",
"emoji",
"smiley",
"utilities",
"regex"
],
"version": "1.2.0",
"sideEffects": false,
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist/**"
],
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts --treeshake --minify",
"lint": "eslint",
"prepare": "yarn build",
"prepublishOnly": "yarn test",
"preversion": "yarn lint",
"version": "yarn format && git add -A src",
"postversion": "git push && git push --tags",
"test": "jest --config jestconfig.json --passWithNoTests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cungminh2710/unicode-emoji-utils.git"
},
"author": "Minh Cung",
"license": "MIT",
"bugs": {
"url": "https://github.com/cungminh2710/unicode-emoji-utils/issues"
},
"homepage": "https://github.com/cungminh2710/unicode-emoji-utils#readme",
"dependencies": {
"emoji-regex": "10.3.0"
}
}