-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.1 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.1 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
{
"name": "markdown-it-ruby-parser",
"version": "0.1.3",
"description": "",
"author": "KiritaniAyaka",
"license": "MIT",
"homepage": "https://github.com/KiritaniAyaka/markdown-it-ruby-parser#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/KiritaniAyaka/markdown-it-ruby-parser.git"
},
"bugs": {
"url": "https://github.com/KiritaniAyaka/markdown-it-ruby-parser/issues"
},
"keywords": [
"markdown",
"markdown-it",
"ruby",
"markdown-it-plugin",
"plugin"
],
"main": "lib/index.js",
"files": [
"/lib"
],
"scripts": {
"test": "vitest",
"coverage": "vitest --coverage",
"build:min": "tsc && esbuild lib/index.js --minify --outfile=lib/index.min.js",
"build": "tsc",
"clean": "rimraf lib coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"devDependencies": {
"@kiritaniayaka/eslint-config": "^0.2.0",
"@types/markdown-it": "^12.2.3",
"@vitest/coverage-c8": "^0.22.1",
"esbuild": "^0.15.6",
"eslint": "^8.22.0",
"markdown-it": "^13.0.1",
"rimraf": "^3.0.2",
"typescript": "^4.7.4",
"vite": "^3.0.9",
"vitest": "^0.22.1"
}
}