UNPKG

1.23 kBJSONView Raw
1{
2 "name": "html-parse-stringify",
3 "description": "Parses well-formed HTML (meaning all tags closed) into an AST and back. quickly.",
4 "version": "2.0.0",
5 "author": "Henrik Joreteg <henrik@joreteg.com>",
6 "bugs": {
7 "url": "https://github.com/henrikjoreteg/html-parse-stringify/issues"
8 },
9 "dependencies": {
10 "void-elements": "3.1.0"
11 },
12 "devDependencies": {
13 "esm": "3.2.25",
14 "microbundle": "0.12.2",
15 "prettier": "2.0.5",
16 "tap-spec": "2.1.2",
17 "tape": "5.0.1"
18 },
19 "files": [
20 "dist"
21 ],
22 "homepage": "https://github.com/henrikjoreteg/html-parse-stringify",
23 "keywords": [
24 "ast",
25 "html",
26 "parse",
27 "stringify"
28 ],
29 "license": "MIT",
30 "main": "dist/html-parse-stringify.js",
31 "module": "dist/html-parse-stringify.module.js",
32 "source": "src/index.js",
33 "unpkg": "dist/html-parse-stringify.umd.js",
34 "prettier": {
35 "arrowParens": "avoid",
36 "singleQuote": true,
37 "semi": false
38 },
39 "repository": {
40 "type": "git",
41 "url": "https://github.com/henrikjoreteg/html-parse-stringify"
42 },
43 "scripts": {
44 "build": "microbundle",
45 "format": "prettier --write .",
46 "prebuild": "rm -rf dist",
47 "test": "tape -r esm test/* | tap-spec"
48 }
49}