-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.81 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
61
62
63
64
65
66
67
68
69
70
{
"name": "@starptech/prettyhtml-formatter",
"version": "0.10.0",
"description": "Html formatter",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/StarpTech/prettyhtml.git"
},
"scripts": {
"test-api": "node test/index.js",
"test-coverage": "nyc --reporter lcov ava",
"test": "ava",
"test-snaphots": "ava --update-snapshots"
},
"files": [
"index.js",
"stringify.js"
],
"keywords": [
"formatter",
"prettyhtml",
"html5"
],
"author": "Dustin Deus <deusdustin@gmail.com> (http://www.starptech.de)",
"license": "MIT",
"bugs": {
"url": "https://github.com/StarpTech/prettyhtml/issues"
},
"homepage": "https://github.com/StarpTech/prettyhtml#readme",
"dependencies": {
"@starptech/expression-parser": "^0.10.0",
"@starptech/prettyhtml-hast-to-html": "^0.10.0",
"@starptech/rehype-minify-whitespace": "^0.10.0",
"@starptech/rehype-webparser": "^0.10.0",
"@starptech/webparser": "^0.10.0",
"hast-util-is-element": "^1.0.3",
"hast-util-to-string": "^1.0.2",
"html-void-elements": "^1.0.4",
"html-whitespace-sensitive-tag-names": "^1.0.1",
"is-hidden": "^1.1.2",
"prettier": "^1.18.2",
"repeat-string": "^1.6.1",
"to-vfile": "^6.0.0",
"unified": "^7.1.0",
"unist-util-find": "^1.0.1",
"unist-util-is": "^2.1.3",
"unist-util-visit-parents": "^2.1.2",
"xtend": "^4.0.1"
},
"devDependencies": {
"ava": "^2.1.0",
"bail": "^1.0.4",
"is-hidden": "^1.1.2",
"negate": "^1.0.0",
"nyc": "^14.1.1",
"rehype": "^8.0.0",
"to-vfile": "^6.0.0"
},
"nyc": {
"check-coverage": true,
"lines": 90,
"functions": 90,
"branches": 85
},
"publishConfig": {
"access": "public"
},
"gitHead": "c7bfe5fdd9ef240ddf235e50a81be52b30828c8f"
}