-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.48 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.48 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
53
54
55
56
57
58
59
60
{
"type": "module",
"name": "htm",
"version": "0.0.0",
"description": "Convert plain text to HTML2, autolinked.",
"main": "src/index.bs.js",
"scripts": {
"pretest": "rescript",
"test": "NODE_NO_WARNINGS=1 c8 --report=lconv tap && c8 report --reporter=text-lcov > coverage/tests.lcov",
"lint": "reanalyze -dce && eslint test/main.ts",
"build": "rescript && tsc && cp src/index.gen.d.ts src/index.bs.d.ts",
"prepare": "husky install",
"doc": "ts-node-esm scripts/doc.ts"
},
"tap": {
"node-arg": [
"--loader=ts-node/esm"
],
"coverage": false,
"ts": false
},
"keywords": [
"html2",
"rfc1866",
"txt",
"autolink"
],
"repository": "weakish/htm",
"bugs": {
"url": "https://github.com/weakish/htm/issues"
},
"author": {
"name": "Jang Rush",
"email": "weakish@gmail.com",
"url": "https://mmap.page"
},
"license": "0BSD",
"dependencies": {
"linkify-string": "^3.0.4",
"linkifyjs": "^3.0.5"
},
"devDependencies": {
"@tsconfig/node16-strictest-esm": "^1.0.3",
"@types/node": "^18.7.16",
"@types/tap": "^15.0.7",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"c8": "^7.12.0",
"eslint": "^8.23.0",
"gentype": "^4.5.0",
"husky": "^8.0.0",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"reanalyze": "^2.23.0",
"rescript": "^10.0.1",
"tap": "^16.3.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.2"
}
}