-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1004 Bytes
/
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
{
"name": "marked-twemoji",
"version": "1.0.0",
"description": "Simple plugin to add twemoji support",
"main": "index.js",
"scripts": {
"test": "jest",
"fmt": "npx prettier --write index.js test/ package.json",
"fmt-check": "npx prettier --check index.js index.d.ts test/ package.json",
"preversion": "npm run fmt-check && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rinzool/marked-twemoji.git"
},
"author": "Quentin FLEURENT NAMBOT",
"license": "MIT",
"bugs": {
"url": "https://github.com/rinzool/marked-twemoji/issues"
},
"homepage": "https://github.com/rinzool/marked-twemoji#readme",
"dependencies": {
"marked": "^4.2.3",
"node-emoji": "^1.11.0",
"twemoji": "^14.0.2"
},
"devDependencies": {
"jest": "^29.3.1",
"prettier": "^2.8.0",
"prettier-plugin-organize-imports": "^3.2.1"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": true
}
}