forked from posthtml/posthtml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.54 KB
/
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
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
{
"name": "posthtml",
"version": "0.13.3",
"description": "HTML/XML processor",
"keywords": [
"html",
"xml",
"postproccessor",
"parser",
"transform",
"transformations",
"manipulation",
"preprocessor",
"processor"
],
"main": "lib",
"types": "types/posthtml.d.ts",
"files": [
"types",
"lib"
],
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
"posthtml-parser": "^0.5.0",
"posthtml-render": "^1.2.3"
},
"devDependencies": {
"chai": "^4.0.0",
"chai-as-promised": "^7.1.1",
"chai-subset": "^1.6.0",
"coveralls": "^3.0.11",
"jsdoc-to-markdown": "^6.0.1",
"mocha": "^8.1.1",
"nyc": "^15.0.1",
"standard": "^14.3.3",
"standard-version": "^9.0.0"
},
"scripts": {
"lint": "standard --env mocha",
"test": "npm run lint && nyc mocha",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"docs:api": "jsdoc2md lib/api.js > docs/api.md",
"docs:core": "jsdoc2md lib/index.js > docs/core.md",
"release": "standard-version"
},
"author": "Ivan Voischev <[email protected]>",
"contributors": [
{
"name": "Ivan Voischev",
"email": "[email protected]"
},
{
"name": "Ivan Demidov",
"email": "[email protected]"
}
],
"homepage": "https://posthtml.org",
"repository": "https://github.com/posthtml/posthtml.git",
"bugs": "https://github.com/posthtml/posthtml/issues",
"license": "MIT",
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/posthtml"
}
}