-
-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
104 lines (104 loc) · 2.83 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
{
"name": "@marp-team/marpit",
"version": "3.1.2",
"description": "The skinny framework for creating slide deck from Markdown",
"license": "MIT",
"author": {
"name": "Marp team",
"url": "https://github.com/marp-team"
},
"homepage": "https://marpit.marp.app/",
"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/marpit"
},
"engines": {
"node": ">=18"
},
"main": "lib/index.js",
"types": "index.d.ts",
"files": [
"lib/",
"index.d.ts",
"plugin.js"
],
"prettier": {
"semi": false,
"singleQuote": true
},
"scripts": {
"build": "npm -s run clean && babel src --out-dir lib",
"check:audit": "npm audit",
"check:format": "npm -s run format -- -c",
"clean": "rimraf lib",
"docs": "node ./docsify/serve.js",
"docs:style": "node ./docsify/build.js",
"format": "prettier \"**/*.{css,html,js,json,md,scss,ts,yaml,yml}\"",
"jsdoc": "rimraf jsdoc && jsdoc src -c .jsdoc.json",
"lint:js": "eslint",
"lint:css": "stylelint \"./**/*.{css,scss}\"",
"prepack": "npm-run-all --parallel check:* lint:* test:coverage --sequential build",
"preversion": "run-p check:* lint:* test:coverage",
"test": "jest",
"test:coverage": "jest --coverage",
"version": "curl https://raw.githubusercontent.com/marp-team/actions/v1/lib/scripts/version.js | node && git add -A CHANGELOG.md",
"watch": "babel src --out-dir lib -w --verbose"
},
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"autoprefixer": "^10.4.20",
"cheerio": "^1.0.0",
"chokidar": "^4.0.3",
"clean-jsdoc-theme": "^4.3.0",
"cssnano": "^7.0.6",
"dedent": "^1.5.3",
"docsify-themeable": "^0.9.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import-x": "^4.6.1",
"globals": "^15.14.0",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"jsdoc": "^4.0.4",
"npm-check-updates": "^17.1.12",
"npm-run-all2": "^7.0.2",
"postcss-selector-parser": "^7.0.0",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"sass": "1.83.0",
"serve-handler": "^6.1.6",
"stylelint": "^16.12.0",
"stylelint-config-standard-scss": "^14.0.0",
"ws": "^8.18.0"
},
"dependencies": {
"@csstools/postcss-is-pseudo-class": "^5.0.1",
"cssesc": "^3.0.0",
"js-yaml": "^4.1.0",
"lodash.kebabcase": "^4.1.1",
"markdown-it": "^14.1.0",
"markdown-it-front-matter": "^0.2.4",
"postcss": "^8.4.49",
"postcss-nesting": "^13.0.1"
},
"publishConfig": {
"access": "public"
}
}