-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.5 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
{
"name": "htmlmark",
"version": "0.2.2",
"description": "Lightweight markdown parser",
"main": "dist/mdp.cjs",
"module": "dist/mdp.esm.js",
"browser": "dist/mdp.umd.js",
"type": "module",
"bin": {
"htmlmark": "./lib/cli/index.js"
},
"files": [
"dist"
],
"exports": {
".": {
"default": "./dist/htmlmark.esm.js",
"import": "./dist/htmlmark.esm.js",
"require": "./dist/htmlmark.umd.js"
},
"./bin/htmlmark": "./lib/cli/index.js"
},
"keywords": [
"nodejs",
"markdown",
"parser"
],
"author": "Kiran Parajuli",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/kiranparajuli589/markdown-parser"
},
"bugs": {
"email": "[email protected]",
"url": "https://github.com/kiranparajuli589/markdown-parser/issues"
},
"engines": {
"node": ">=16.0.0",
"pnpm": ">=7.0.0"
},
"scripts": {
"jest": "jest --silent ",
"test": "jest --silent --coverage",
"jest:no:coverage": "jest --no-coverage",
"jest:watch": "jest --watch --no-coverage",
"jest:parser:watch": "pnpm jest:watch tests/unit/parser.spec.js",
"jest:integration:watch": "pnpm jest:watch tests/integration/small.spec.js",
"lint": "eslint lib tests --ext .js",
"lint:fix": "pnpm lint --fix",
"build": "rollup -c rollup.config.js"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/plugin-transform-modules-commonjs": "^7.23.0",
"eslint": "8.22.0",
"eslint-plugin-import": "^2.28.1",
"highlight.js": "^11.9.0",
"jest": "^28.1.3",
"rollup": "^3.29.4"
}
}