-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.42 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.42 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "mikuparser",
"version": "1.0.6",
"main": "dist/index.js",
"license": "MIT",
"keywords": [
"markdown-it",
"markdown",
"parser",
"miku"
],
"devDependencies": {
"@types/markdown-it": "^12.2.1",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@microsoft/api-extractor": "^7.18.7",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"eslint": "^7.32.0",
"eslint-define-config": "^1.0.9",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"postcss": "^8.3.6",
"prettier": "^2.3.2",
"pretty-quick": "^3.1.1",
"rollup": "^2.56.3",
"rollup-plugin-polyfill-node": "^0.7.0",
"rollup-plugin-postcss": "^4.0.1",
"rollup-plugin-typescript2": "^0.30.0",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^22.0.0",
"stylelint-order": "^4.1.0",
"typescript": "^4.4.2"
},
"scripts": {
"api": "api-extractor run",
"install:husky": "husky install",
"lint:pretty": "pretty-quick --staged",
"lint:eslint": "eslint \"{src}/**/*.{js,ts}\" --fix",
"lint:all": "npm run lint:lint-staged && npm run lint:prettier && npm run lint:stylelint",
"lint:lint-staged": "lint-staged -c ./.husky/lint-staged.config.js",
"lint:prettier": "prettier --write --loglevel warn \"src/**/*.{js,json,html,md}\"",
"lint:stylelint": "stylelint --fix \"**/*.{vue,less,postcss,css,scss}\" --cache --cache-location node_modules/.cache/stylelint/",
"build": "rollup -w -c rollup.config.js"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"dependencies": {
"clipboard": "^2.0.8",
"highlight.js": "^11.2.0",
"markdown-it": "^12.2.0",
"markdown-it-abbr": "^1.0.4",
"markdown-it-anchor": "^8.3.0",
"markdown-it-container": "^3.0.0",
"markdown-it-emoji": "^2.0.0",
"markdown-it-ins": "^3.0.1",
"markdown-it-mark": "^3.0.1",
"markdown-it-sub": "^1.0.0",
"markdown-it-sup": "^1.0.0",
"markdown-it-table-of-contents": "^0.5.2",
"markdown-it-task-lists": "^2.1.1"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:coder-th/miku-md-parser.git"
}
}