-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1 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
{
"name": "mdis",
"version": "0.0.9",
"description": "Markdown include source",
"engines": {
"node": ">=14.17"
},
"main": "bin/mdis.js",
"bin": {
"mdis": "bin/mdis.js"
},
"scripts": {
"test": "jest",
"prettier": "prettier --write \"**/**.{js,json}\"",
"prettier:check": "prettier --list-different \"{,!(node_modules)/**/}*.{js,json}\"",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/MrCheater/mdis.git"
},
"keywords": [
"markdown",
"embed",
"embedded",
"javascript",
"npm",
"utils"
],
"authors": [
"Mr.Cheater (Anton Zhukov)",
"Eugeniy Burmistrov",
"vladihost"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/MrCheater/mdis/issues"
},
"homepage": "https://github.com/MrCheater/mdis#readme",
"dependencies": {
"glob": "^10.3.12",
"minimist": "^1.2.8"
},
"devDependencies": {
"jest": "^29.7.0",
"prettier": "^3.2.5",
"eslint": "^8.57.0"
}
}