This repository has been archived by the owner on Jan 6, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.96 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
{
"name": "node-html-light",
"version": "2.12.0",
"description": "HTML Parser for NodeJS providing a lightweight object oriented interface",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"test-watch": "watch \"npm run test\" test/spec lib",
"test": "mocha test/spec --check-leaks",
"nlv": "node-license-validator --allow-licenses WTFPL ISC MIT Apache-2.0 --allow-packages domelementtype domhandler domutils entities --production --deep",
"coverage": "nyc npm run test",
"docs": "jsdoc lib --destination docs --configure .jsdoc.json --readme README.md ",
"preversion": "npm run nlv && npm run test",
"version": "npm run changelog && git add -A CHANGELOG.md",
"postversion": "git push origin master && git push origin master --tags",
"release-major": "npm version major -m \"chore(release): v%s\"",
"release-minor": "npm version minor -m \"chore(release): v%s\"",
"release-patch": "npm version patch -m \"chore(release): v%s\"",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"bugs": {
"url": "https://github.com/stfsy/node-html-light/issues"
},
"homepage": "https://github.com/stfsy/node-html-light#readme",
"repository": {
"type": "git",
"url": "https://github.com/stfsy/node-html-light"
},
"keywords": [
"node",
"document",
"dom",
"domutils",
"elements",
"html",
"html parser",
"htmlparser2",
"parser",
"render",
"render html",
"serverside"
],
"author": "Stefan Pfaffel",
"license": "MIT",
"devDependencies": {
"chai": "^5.1.2",
"chai-spies": "^1.1.0",
"conventional-changelog-cli": "^5.0.0",
"fs-promise": "^2.0.2",
"jsdoc": "^4.0.4",
"merge": "^2.1.1",
"minami": "^1.1.1",
"minimist": "^1.2.8",
"mocha": "^10.8.2",
"node-license-validator": "^1.3.2",
"nyc": "^17.1.0",
"trim-newlines": "^5.0.0",
"watch": "^1.0.2"
},
"dependencies": {
"htmlparser2": "^9.1.0"
}
}