forked from rayd/html-parse-stringify2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 987 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
{
"name": "html-parse-stringify2",
"description": "Parses well-formed HTML (meaning all tags closed) into an AST and back. quickly.",
"version": "2.0.1",
"author": "Ray Di Ciaccio <[email protected]>",
"bugs": {
"url": "https://github.com/rayd/html-parse-stringify2/issues"
},
"dependencies": {
"void-elements": "^2.0.1"
},
"devDependencies": {
"jshint": "^2.5.10",
"phantomjs": "^1.9.13",
"precommit-hook": "^1.0.7",
"run-browser": "^2.0.1",
"tap-spec": "^2.1.2",
"tape": "^3.0.3",
"zuul": "^1.16.5"
},
"homepage": "https://github.com/rayd/html-parse-stringify2",
"keywords": [
"html",
"parse",
"stringify",
"ast"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/rayd/html-parse-stringify2"
},
"scripts": {
"start": "run-browser test/*",
"test": "zuul --phantom -- test/index.js",
"test-ci": "zuul -- test/index.js"
}
}