-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.27 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.27 KB
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
{
"name": "markdown-it-github-alert",
"version": "1.0.6",
"description": "GitHub Markdown Alert Syntax Plugin for Markdown It",
"main": "./dist/index.js",
"types": "./dist/types/index.d.ts",
"scripts": {
"test": "jest",
"build": "tsc",
"lint": "eslint",
"prepack": "npm run build",
"prebuild": "npm run clean",
"clean": "rimraf ./dist"
},
"repository": {
"type": "git",
"url": "https://github.com/ByPikod/markdown-it-github-alert"
},
"keywords": [
"github",
"markdown",
"markdown-it",
"plugin"
],
"author": "admin@yahyabatulu.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/ByPikod/markdown-it-github-alert/issues"
},
"homepage": "https://github.com/ByPikod/markdown-it-github-alert",
"devDependencies": {
"@types/markdown-it": "^13.0.4",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"eslint": "^8.52.0",
"eslint-config-standard-with-typescript": "^39.1.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.2.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"rimraf": "^5.0.5"
},
"dependencies": {
"markdown-it": "^13.0.2"
},
"files": [
"dist/**/*"
]
}