forked from marp-team/marp-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
130 lines (130 loc) · 3.8 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
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "@marp-team/marp-core",
"version": "3.9.0",
"description": "The core of Marp tools",
"license": "MIT",
"author": {
"name": "Marp team",
"url": "https://github.com/marp-team"
},
"contributors": [
{
"name": "Yuki Hattori",
"url": "https://github.com/yhatt"
}
],
"keywords": [
"marp",
"markdown",
"parser",
"slide",
"deck",
"presentation"
],
"repository": {
"type": "git",
"url": "https://github.com/marp-team/marp-core"
},
"main": "lib/marp.js",
"types": "types/src/marp.d.ts",
"files": [
"lib/",
"types/",
"browser.js",
"browser.d.ts"
],
"engines": {
"node": "^12.20 || ^14.13.1 || >=16"
},
"scripts": {
"build": "yarn -s clean && rollup -c",
"check:audit": "yarn audit",
"check:format": "yarn -s format -c",
"check:ts": "tsc --noEmit",
"clean": "rimraf lib",
"format": "prettier \"**/*.{css,js,json,md,mjs,scss,ts,yaml,yml}\"",
"format:write": "yarn -s format --write",
"lint:js": "eslint --ext .js,.mjs,.ts --report-unused-disable-directives --cache .",
"lint:css": "stylelint \"{src,themes}/**/*.{css,scss}\"",
"prepack": "npm-run-all --parallel check:* lint:* test:coverage --parallel build types",
"preversion": "run-p check:* lint:* test:coverage",
"sandbox": "run-p watch sandbox:watch",
"sandbox:watch": "mkdirp lib && nodemon",
"test": "jest",
"test:coverage": "jest --coverage",
"types": "rimraf types && tsc --declaration --emitDeclarationOnly --outDir types",
"version": "curl https://raw.githubusercontent.com/marp-team/actions/v1/lib/scripts/version.js | node && git add -A CHANGELOG.md",
"watch": "rollup -w -c"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"nodemonConfig": {
"watch": "./lib",
"exec": "npx @marp-team/marp-cli@latest -y"
},
"devDependencies": {
"@rollup/plugin-alias": "^5.0.1",
"@rollup/plugin-commonjs": "^25.0.5",
"@rollup/plugin-json": "^6.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.5",
"@tsconfig/node12": "^12.1.0",
"@twemoji/api": "^14.1.2",
"@types/jest": "^29.5.5",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"autoprefixer": "^10.4.16",
"cheerio": "^1.0.0-rc.12",
"cssnano": "^6.0.1",
"emoji-regex": "^10.2.1",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jest": "^27.4.2",
"github-markdown-css": "^5.3.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-junit": "^16.0.0",
"jest-plugin-context": "^2.9.0",
"markdown-it": "^13.0.2",
"markdown-it-emoji": "^2.0.2",
"mkdirp": "^3.0.1",
"nodemon": "^3.0.1",
"npm-run-all": "^4.1.5",
"postcss-minify-params": "^6.0.0",
"postcss-minify-selectors": "^6.0.0",
"postcss-normalize-whitespace": "^6.0.0",
"postcss-url": "^10.1.3",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"rollup": "^4.1.1",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-string": "^3.0.0",
"sass": "^1.69.3",
"sass-extended-importer": "^1.0.1",
"self-closing-tags": "^1.0.1",
"stylelint": "^15.10.3",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-standard-scss": "^11.0.0",
"ts-jest": "29.1.1",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
},
"dependencies": {
"@marp-team/marpit": "^2.6.1",
"@marp-team/marpit-svg-polyfill": "^2.1.0",
"highlight.js": "11.8.0",
"katex": "^0.16.9",
"mathjax-full": "^3.2.2",
"postcss": "^8.4.31",
"postcss-selector-parser": "^6.0.13",
"xss": "^1.0.14"
},
"publishConfig": {
"access": "public"
}
}