forked from remarkablemark/html-dom-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.66 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
88
89
90
91
92
93
94
95
96
97
98
{
"name": "html-dom-parser",
"version": "3.1.7",
"description": "HTML to DOM parser.",
"author": "Mark <[email protected]>",
"main": "index.js",
"types": "index.d.ts",
"module": "index.mjs",
"exports": {
"types": "./index.d.ts",
"import": "./index.mjs",
"require": "./index.js"
},
"scripts": {
"build": "rollup --config --failAfterWarnings",
"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",
"size-limit": "size-limit",
"test": "run-s test:server test:client",
"test:client": "npm run test:client:watch -- --single-run",
"test:client:build": "NODE_ENV=test npm run build",
"test:client:watch": "npm run test:client:build && karma start",
"test:module": "node --experimental-modules test/module/index.mjs",
"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": "5.0.3",
"htmlparser2": "8.0.2"
},
"devDependencies": {
"@commitlint/cli": "17.6.1",
"@commitlint/config-conventional": "17.6.1",
"@rollup/plugin-commonjs": "24.0.1",
"@rollup/plugin-node-resolve": "15.0.2",
"@size-limit/preset-big-lib": "8.1.0",
"@types/estree": "1.0.0",
"chai": "4.3.7",
"dtslint": "4.2.1",
"eslint": "8.38.0",
"eslint-plugin-prettier": "4.2.1",
"html-minifier": "4.0.0",
"husky": "8.0.3",
"jsdomify": "3.1.1",
"karma": "6.4.1",
"karma-chai": "0.1.0",
"karma-chrome-launcher": "3.1.1",
"karma-commonjs": "1.0.0",
"karma-mocha": "2.0.1",
"karma-mocha-reporter": "2.2.5",
"lint-staged": "13.2.1",
"mocha": "10.2.0",
"mock-require": "3.0.3",
"npm-run-all": "4.1.5",
"nyc": "15.1.0",
"pinst": "3.0.0",
"prettier": "2.8.7",
"rollup": "2.79.1",
"rollup-plugin-terser": "7.0.2",
"sinon": "15.0.3",
"size-limit": "8.1.0",
"typescript": "5.0.4"
},
"files": [
"/dist",
"/index.d.ts",
"/index.js",
"/index.mjs",
"/lib"
],
"browser": {
"./index.js": "./lib/client/html-to-dom.js",
"./index.mjs": "./lib/client/html-to-dom.mjs"
},
"react-native": {
"./index.js": "./lib/server/html-to-dom.js"
},
"license": "MIT"
}