1 | {
|
---|
2 | "name": "htmlparser2",
|
---|
3 | "description": "Fast & forgiving HTML/XML parser",
|
---|
4 | "version": "6.1.0",
|
---|
5 | "author": "Felix Boehm <me@feedic.com>",
|
---|
6 | "funding": [
|
---|
7 | "https://github.com/fb55/htmlparser2?sponsor=1",
|
---|
8 | {
|
---|
9 | "type": "github",
|
---|
10 | "url": "https://github.com/sponsors/fb55"
|
---|
11 | }
|
---|
12 | ],
|
---|
13 | "license": "MIT",
|
---|
14 | "sideEffects": false,
|
---|
15 | "keywords": [
|
---|
16 | "html",
|
---|
17 | "parser",
|
---|
18 | "streams",
|
---|
19 | "xml",
|
---|
20 | "dom",
|
---|
21 | "rss",
|
---|
22 | "feed",
|
---|
23 | "atom"
|
---|
24 | ],
|
---|
25 | "repository": {
|
---|
26 | "type": "git",
|
---|
27 | "url": "git://github.com/fb55/htmlparser2.git"
|
---|
28 | },
|
---|
29 | "directories": {
|
---|
30 | "lib": "lib/"
|
---|
31 | },
|
---|
32 | "main": "lib/index.js",
|
---|
33 | "types": "lib/index.d.ts",
|
---|
34 | "files": [
|
---|
35 | "lib/**/*"
|
---|
36 | ],
|
---|
37 | "scripts": {
|
---|
38 | "test": "jest --coverage",
|
---|
39 | "lint": "npm run lint:es && npm run lint:prettier",
|
---|
40 | "lint:es": "eslint src",
|
---|
41 | "lint:prettier": "npm run format:prettier:raw -- --check",
|
---|
42 | "format": "npm run format:es && npm run format:prettier",
|
---|
43 | "format:es": "npm run lint:es -- --fix",
|
---|
44 | "format:prettier": "npm run format:prettier:raw -- --write",
|
---|
45 | "format:prettier:raw": "prettier '**/*.{ts,md,json,yml}'",
|
---|
46 | "build": "tsc",
|
---|
47 | "prepare": "npm run build"
|
---|
48 | },
|
---|
49 | "dependencies": {
|
---|
50 | "domelementtype": "^2.0.1",
|
---|
51 | "domhandler": "^4.0.0",
|
---|
52 | "domutils": "^2.5.2",
|
---|
53 | "entities": "^2.0.0"
|
---|
54 | },
|
---|
55 | "devDependencies": {
|
---|
56 | "@types/jest": "^26.0.0",
|
---|
57 | "@types/node": "^14.0.5",
|
---|
58 | "@typescript-eslint/eslint-plugin": "^4.9.1",
|
---|
59 | "@typescript-eslint/parser": "^4.9.1",
|
---|
60 | "eslint": "^7.15.0",
|
---|
61 | "eslint-config-prettier": "^8.1.0",
|
---|
62 | "jest": "^26.0.1",
|
---|
63 | "prettier": "^2.1.1",
|
---|
64 | "ts-jest": "^26.0.0",
|
---|
65 | "typescript": "^4.0.2"
|
---|
66 | },
|
---|
67 | "jest": {
|
---|
68 | "preset": "ts-jest",
|
---|
69 | "testEnvironment": "node"
|
---|
70 | },
|
---|
71 | "prettier": {
|
---|
72 | "tabWidth": 4
|
---|
73 | }
|
---|
74 | }
|
---|