forked from fb55/htmlparser2
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 1.76 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
{
"name": "htmlparser2-svelte",
"description": "Fast & forgiving HTML/Svelte/XML/RSS parser",
"version": "4.1.1",
"author": "Alexey Mulyukin <[email protected]>",
"contributors": [
"Felix Boehm <[email protected]>"
],
"sideEffects": false,
"keywords": [
"html",
"parser",
"streams",
"xml",
"dom",
"rss",
"feed",
"atom",
"svelte"
],
"repository": {
"type": "git",
"url": "https://github.com/alexprey/htmlparser2.git"
},
"directories": {
"lib": "lib/"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"browser": {
"./lib/WritableStream.js": false
},
"scripts": {
"test": "jest --coverage -u && npm run lint",
"coverage": "cat coverage/lcov.info | coveralls",
"lint": "eslint --ext=js,ts src",
"format": "prettier --write '**/*.{ts,md,json}'",
"build": "tsc",
"prepare": "npm run build"
},
"dependencies": {
"domelementtype": "^2.0.1",
"domhandler": "^3.0.0",
"domutils": "^2.0.0",
"entities": "^2.0.0"
},
"devDependencies": {
"@types/jest": "^26.0.0",
"@types/node": "^14.0.5",
"@typescript-eslint/eslint-plugin": "^2.31.0",
"@typescript-eslint/parser": "^2.31.0",
"coveralls": "^3.0.1",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.0.0",
"jest": "^26.0.1",
"prettier": "^2.0.5",
"ts-jest": "^26.0.0",
"typescript": "^3.5.3"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"license": "MIT",
"prettier": {
"tabWidth": 4
}
}