forked from marp-team/marp-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
116 lines (116 loc) · 3.31 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
{
"name": "@marp-team/marp-core",
"version": "1.1.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": ">=10"
},
"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,scss,ts,yaml,yml}\"",
"format:write": "yarn -s format --write",
"lint:ts": "tslint \"{src,test}/**/*.ts\"",
"lint:css": "stylelint \"{src,themes}/**/*.{css,scss}\"",
"prepack": "npm-run-all --parallel check:* lint:* test:coverage --parallel build types",
"preversion": "npm-run-all --parallel check:* lint:* test:coverage",
"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"
},
"devDependencies": {
"@rollup/plugin-alias": "^3.0.1",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-json": "^4.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"@rollup/plugin-typescript": "^4.0.0",
"@types/cheerio": "^0.22.16",
"@types/jest": "^25.1.4",
"@types/jest-plugin-context": "^2.9.2",
"autoprefixer": "^9.7.4",
"cheerio": "^1.0.0-rc.3",
"codecov": "^3.6.1",
"github-markdown-css": "^4.0.0",
"jest": "^25.1.0",
"jest-junit": "^10.0.0",
"jest-plugin-context": "^2.9.0",
"markdown-it": "^10.0.0",
"node-sass-package-importer": "^5.3.2",
"npm-run-all": "^4.1.5",
"postcss-url": "^8.0.0",
"prettier": "^1.19.1",
"rimraf": "^3.0.2",
"rollup": "^2.1.0",
"rollup-plugin-postcss": "^2.5.0",
"rollup-plugin-string": "^3.0.0",
"rollup-plugin-terser": "^5.3.0",
"sass": "^1.26.3",
"self-closing-tags": "^1.0.1",
"stylelint": "^13.2.1",
"stylelint-config-prettier": "^8.0.1",
"stylelint-config-standard": "^20.0.0",
"stylelint-scss": "^3.15.0",
"ts-jest": "25.2.1",
"tslib": "^1.11.1",
"tslint": "^6.1.0",
"tslint-config-airbnb": "^5.11.2",
"tslint-config-prettier": "^1.17.0",
"typescript": "^3.8.3"
},
"dependencies": {
"@marp-team/marpit": "^1.5.1",
"@marp-team/marpit-svg-polyfill": "^1.2.0",
"emoji-regex": "^8.0.0",
"highlight.js": "^9.18.1",
"katex": "^0.11.1",
"markdown-it-emoji": "^1.4.0",
"postcss": "^7.0.27",
"postcss-minify-params": "^4.0.2",
"postcss-minify-selectors": "^4.0.2",
"postcss-normalize-whitespace": "^4.0.2",
"twemoji": "^12.1.5",
"xss": "^1.0.6"
},
"resolutions": {
"**/gonzales-pe/minimist": "^1.2.5"
},
"publishConfig": {
"access": "public"
}
}