-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
87 lines (87 loc) · 2.37 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "html-dom-parser",
"version": "1.0.4",
"description": "HTML to DOM parser.",
"author": "Mark <[email protected]>",
"main": "index.js",
"scripts": {
"build": "rollup --config",
"clean": "rm -rf dist",
"lint": "eslint . --ignore-path .gitignore",
"lint:dts": "dtslint .",
"lint:fix": "npm run lint -- --fix",
"postinstall": "husky install",
"postpublish": "pinst --enable",
"prepublishOnly": "pinst --disable && run-s lint lint:dts test:server clean build",
"release": "standard-version --no-verify",
"size-limit": "size-limit",
"test": "run-s test:server test:client",
"test:client": "npm run test:client:watch -- --single-run",
"test:client:build": "webpack --config webpack.test.config.js",
"test:client:watch": "npm run test:client:build && karma start",
"test:server": "nyc mocha test/server"
},
"repository": {
"type": "git",
"url": "https://github.com/remarkablemark/html-dom-parser"
},
"bugs": {
"url": "https://github.com/remarkablemark/html-dom-parser/issues"
},
"keywords": [
"html-dom-parser",
"html",
"dom",
"parser",
"htmlparser2",
"pojo"
],
"dependencies": {
"domhandler": "4.3.0",
"htmlparser2": "7.2.0"
},
"devDependencies": {
"@commitlint/cli": "15.0.0",
"@commitlint/config-conventional": "15.0.0",
"@rollup/plugin-commonjs": "21.0.1",
"@rollup/plugin-node-resolve": "13.0.6",
"@size-limit/preset-big-lib": "5.0.3",
"chai": "4.3.4",
"dtslint": "4.2.1",
"eslint": "8.4.0",
"eslint-plugin-prettier": "4.0.0",
"html-minifier": "4.0.0",
"husky": "7.0.4",
"jsdomify": "3.1.1",
"karma": "6.3.9",
"karma-chai": "0.1.0",
"karma-chrome-launcher": "3.1.0",
"karma-commonjs": "1.0.0",
"karma-mocha": "2.0.1",
"karma-mocha-reporter": "2.2.5",
"lint-staged": "12.1.2",
"mocha": "9.1.3",
"mock-require": "3.0.3",
"npm-run-all": "4.1.5",
"nyc": "15.1.0",
"pinst": "2.1.6",
"prettier": "2.5.1",
"rollup": "2.60.2",
"rollup-plugin-terser": "7.0.2",
"sinon": "12.0.1",
"size-limit": "5.0.3",
"standard-version": "9.3.2",
"typescript": "4.5.2",
"webpack": "4.46.0",
"webpack-cli": "4.9.1"
},
"files": [
"/dist",
"/index.d.ts",
"/lib"
],
"browser": {
"./index.js": "./lib/client/html-to-dom.js"
},
"license": "MIT"
}