-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.1 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.1 KB
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
{
"name": "markdown-maker",
"version": "1.10.4",
"description": "A superset-compiler for markdown using marked",
"main": "src/main.ts",
"bin": {
"mdparse": "bundle/main.js"
},
"scripts": {
"prebundle": "node -p \"'export const LIB_VERSION = ' + JSON.stringify(require('./package.json').version) + ';'\" > src/version.ts",
"test": "jest",
"bundle": "tsc --project tsconfig.json",
"main": "node bundle/main.js",
"clean": "rm -rf bundle bin",
"pretest": "npm run bundle"
},
"keywords": [],
"author": "blitzher",
"license": "MIT",
"dependencies": {
"argparse": "^2.0.1",
"chokidar": "^3.5.1",
"colors.ts": "^1.0.20",
"marked": "^12.0.2",
"node-html-parser": "^6.1.13",
"require-runtime": "^2.0.0",
"ts-node": "^10.9.2",
"ws": "^8.8.1"
},
"devDependencies": {
"@types/argparse": "^2.0.16",
"@types/chokidar": "^2.1.3",
"@types/colors": "^1.2.1",
"@types/jest": "^29.5.12",
"@types/node": "^15.6.1",
"@types/ws": "^8.5.3",
"@types/xregexp": "^4.4.0",
"cloc": "^2.7.0",
"jest": "^29.7.0",
"prettier": "^2.3.0",
"ts-jest": "^29.1.2",
"typescript": "^4.3.2"
}
}