forked from posthtml/posthtml-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.61 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.61 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
{
"name": "@lancer/posthtml-parser",
"version": "0.7.1-fork.3",
"description": "Parse HTML/XML to PostHTMLTree",
"license": "MIT",
"repository": "posthtml/posthtml-parser",
"homepage": "https://github.com/posthtml/posthtml-parser#readme",
"bugs": {
"url": "https://github.com/posthtml/posthtml-parser/issues"
},
"author": "Ivan Voischev <voischev@posthtml.org>",
"contributors": [
{
"name": "Ivan Voischev",
"email": "voischev@posthtml.org"
},
{
"name": "Ivan Demidov",
"email": "scrum@posthtml.org"
}
],
"main": "dist",
"engines": {
"node": ">=10"
},
"scripts": {
"version": "conventional-changelog -i changelog.md -s -r 0 && git add changelog.md",
"build": "rm -rf dist && tsup src/*.ts --minify",
"dev": "npm run build -- --watch",
"test": "xo && c8 ava",
"pretest": "clinton"
},
"keywords": [
"html",
"xml",
"parser",
"posthtml",
"posthtmltree"
],
"dependencies": {
"@lancer/htmlparser2": "6.1.0-fork.2"
},
"devDependencies": {
"@antfu/eslint-config-ts": "^0.4.3",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-angular": "^11.0.0",
"@types/node": "^14.14.25",
"ava": "^3.13.0",
"c8": "^7.5.0",
"clinton": "^0.14.0",
"conventional-changelog-cli": "^2.0.34",
"esbuild-register": "^2.0.0",
"eslint": "^7.19.0",
"esm": "^3.2.25",
"husky": "^4.3.8",
"lint-staged": "^10.5.3",
"rewire": "^5.0.0",
"rimraf": "^3.0.0",
"ts-node": "^9.0.0",
"tsup": "^3.7.1",
"typescript": "^4.0.5",
"xo": "^0.37.1"
},
"types": "types/index.d.ts"
}