-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 937 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 937 Bytes
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
{
"name": "@readme/emojis",
"version": "6.0.0",
"description": "A collection of all emojis supported on ReadMe.",
"main": "src/index.js",
"files": [
"unicode",
"src"
],
"repository": {
"type": "git",
"url": "git@github.com:readmeio/emojis.git"
},
"engines": {
"node": ">=18"
},
"author": "Jon Ursenbach <jon@readme.io>",
"license": "ISC",
"scripts": {
"build": "./bin/regenerate-unicode",
"dist": "node build.js",
"lint": "npm run lint:js && npm run prettier",
"lint:js": "biome check",
"pretest": "npm run lint",
"prettier": "prettier --check .",
"prettier:write": "prettier --check --write .",
"test": "vitest run"
},
"devDependencies": {
"@biomejs/biome": "^2.2.7",
"@readme/standards": "^2.3.0",
"glob": "^10.3.12",
"prettier": "^3.2.5",
"sharp": "^0.33.3",
"vitest": "^4.0.2"
},
"prettier": "@readme/standards/prettier"
}