-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.2 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
{
"name": "mdhl",
"version": "0.0.6",
"description": "~1KB markdown syntax highlighter",
"source": "mdhl.js",
"main": "dist/mdhl.js",
"module": "dist/mdhl.esm.js",
"unpkg": "dist/mdhl.umd.js",
"files": [
"mdhl.js",
"mdhl.css",
"dist/mdhl.js",
"dist/mdhl.esm.js",
"dist/mdhl.umd.js"
],
"scripts": {
"build": "microbundle build --no-sourcemap -f es,cjs,umd",
"dev": "microbundle watch --no-sourcemap -f es,cjs,umd",
"prettier:check": "prettier --check mdhl.js",
"prettier:write": "prettier --write mdhl.js",
"release": "npx standard-version"
},
"engines": {
"node": ">=12.17.0"
},
"browserslist": [
"defaults",
"not IE 11",
"not IE_Mob 11",
"maintained node versions"
],
"keywords": [
"md",
"markdown",
"highlight",
"highlighter",
"syntax"
],
"author": "Peter Solopov <peter@solopov.dev>",
"homepage": "https://github.com/petersolopov/mdhl",
"bugs": "https://github.com/petersolopov/mdhl/issues",
"repository": {
"type": "git",
"url": "https://github.com/petersolopov/mdhl"
},
"license": "MIT",
"dependencies": {},
"devDependencies": {
"microbundle": "^0.12.0",
"prettier": "^2.0.5"
}
}