-
-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
101 lines (101 loc) · 2.73 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
{
"name": "@marp-team/marpit",
"version": "2.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": ">=10"
},
"main": "lib/index.js",
"types": "index.d.ts",
"files": [
"lib/",
"index.d.ts",
"plugin.js"
],
"prettier": {
"semi": false,
"singleQuote": true
},
"scripts": {
"build": "yarn -s clean && babel src --out-dir lib",
"check:audit": "yarn audit",
"check:format": "yarn -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 --report-unused-disable-directives .",
"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.15.7",
"@babel/core": "^7.15.8",
"@babel/eslint-parser": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"autoprefixer": "^10.3.7",
"cheerio": "^1.0.0-rc.10",
"chokidar": "^3.5.2",
"cssnano": "^5.0.8",
"dedent": "^0.7.0",
"docsify-themeable": "^0.8.6",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"jest": "^27.3.1",
"jest-junit": "^13.0.0",
"jsdoc": "^3.6.7",
"minami": "^1.2.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"sass": "1.43.3",
"serve-handler": "^6.1.3",
"stylelint": "^14.0.1",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard-scss": "^2.0.0",
"ws": "^8.2.3"
},
"dependencies": {
"color-string": "^1.6.0",
"cssesc": "^3.0.0",
"js-yaml": "^4.1.0",
"lodash.kebabcase": "^4.1.1",
"markdown-it": "^12.2.0",
"markdown-it-front-matter": "^0.2.3",
"postcss": "^8.3.11"
},
"publishConfig": {
"access": "public"
}
}