-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 897 Bytes
/
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
{
"name": "html2notebook",
"version": "1.2.1",
"author": "Mara Nikola Kiefer",
"license": "MIT",
"description": "Convert static HTML files to notebooks",
"main": "lib/index.js",
"files": [
"lib/",
"CHANGELOG.md",
"README.md",
"LICENSE"
],
"types": "lib/types/index.d.ts",
"repository": {
"type": "git",
"url": "git://github.com/mnkiefer/html2notebook"
},
"dependencies": {
"htmlparser2": "^9.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.2",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typedoc": "^0.24.8",
"typescript": "^5.1.3"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"scripts": {
"compile": "tsc -p ./",
"watch": "tsc -p ./ --watch",
"test": "npm run compile && jest",
"lint": "eslint",
"docs": "npx typedoc --entryPoints src/index.ts --out docs"
}
}