-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
41 lines (41 loc) · 1.26 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
{
"name": "txt2html_version2",
"version": "1.0.0",
"description": "Static Site Generator that converts .txt to .html",
"main": "./src/txt2html.js",
"bin": "./src/txt2html.js",
"scripts": {
"test": "jest --verbose",
"start": "node src/txt2html.js",
"prettier": "prettier --write .",
"prettier-check": "prettier --check .",
"eslint": "eslint --ignore-path .eslintignore .",
"eslint-fix": "eslint --fix --ignore-path .eslintignore ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/tcvan0707/txt2html.git"
},
"author": "Thanh Van <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tcvan0707/txt2html/issues"
},
"homepage": "https://github.com/tcvan0707/txt2html#readme",
"dependencies": {
"execa": "^6.0.0",
"fs": "0.0.1-security",
"fs.promises": "^0.1.2",
"markdown": "^0.5.0",
"markdown-it": "^12.2.0",
"marked": "^3.0.4",
"yargs": "^17.1.1"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.3.1",
"prettier": "2.4.1"
}
}