-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
30 lines (30 loc) · 845 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
{
"name": "html-parser-book",
"version": "1.1.0",
"description": "The book 'Idiosyncrasies of the HTML parser'",
"main": "index.js",
"scripts": {
"build": "npx @11ty/eleventy --quiet",
"serve": "npx @11ty/eleventy --serve --quiet",
"debug": "DEBUG=* npx @11ty/eleventy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zcorpan/html-parser-book.git"
},
"author": "Simon Pieters",
"license": "CC-BY-4.0",
"bugs": {
"url": "https://github.com/zcorpan/html-parser-book/issues"
},
"homepage": "https://htmlparser.info/",
"devDependencies": {
"@11ty/eleventy": "^0.12.1",
"chalk": "^4.1.2",
"eleventy-plugin-toc": "^1.0.1",
"markdown-it-anchor": "^5.3.0",
"markdown-it-deflist": "^2.0.3",
"markdown-it-image-size": "^13.0.1",
"parse-json": "^5.2.0"
}
}