-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.54 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.54 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
45
46
47
48
49
50
51
52
{
"name": "md-chunk",
"version": "0.1.0",
"main": "bin.js",
"description": "Markdown to html converter via command line with built-in editor and conversion settings.",
"repository": "git@github.com:edmilson-dk/md-chunk.git",
"author": "Edmilson Jesus <droidvidaboa@gmail.com>",
"license": "MIT",
"scripts": {
"build": "rm -rf ./lib && tsc && mv ./lib/src/* ./lib && rm -rf ./lib/src && npm run build-bin",
"build-bin": "mv ./lib/bin.js ./lib/bin && chmod +x ./lib/bin",
"start:dev": "npx ts-node-dev --transpile-only src/bin.ts",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm run lint",
"preversion": "npm run lint",
"version": "npm run format",
"postversion": "git push && git push --tags"
},
"types": "lib/bin.d.ts",
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/commander": "^2.12.2",
"@types/express": "^4.17.13",
"@types/inquirer": "^7.3.3",
"@types/markdown-it": "^12.0.3",
"@types/node": "^16.3.1",
"prettier": "^2.3.2",
"ts-node-dev": "^1.1.8",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.3.5"
},
"bin": {
"bin": "lib/bin.js"
},
"keywords": [
"HTML",
"Markdown",
"CLI"
],
"dependencies": {
"chalk": "^4.1.1",
"commander": "^8.0.0",
"inquirer": "^8.1.1",
"markdown-it": "^12.1.0",
"remark": "^13.0.0",
"remark-html": "^13.0.2",
"remark-preset-lint-recommended": "^5.0.0"
}
}