-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.89 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
{
"name": "@beforesemicolon/html-parser",
"version": "0.6.0",
"description": "HTML parser for any Javascript runtime environment",
"type": "module",
"types": "./dist/types/index.d.ts",
"exports": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"default": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts"
},
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage",
"build:browser": "node node_modules/@beforesemicolon/builder/dist/build-browser.js",
"build:modules": "node node_modules/@beforesemicolon/builder/dist/build-modules.js",
"build": "rm -rf dist && npm-run-all lint test && tsc --emitDeclarationOnly && npm-run-all build:modules build:browser",
"lint": "eslint ./src && prettier --check ./src",
"format": "eslint ./src --fix && prettier --write ./src"
},
"keywords": [
"parser",
"javascript",
"nodejs",
"web",
"html"
],
"author": "Elson Correia",
"license": "BSD-3-Clause",
"repository": {
"url": "https://github.com/beforesemicolon/html-parser",
"type": "git"
},
"devDependencies": {
"@beforesemicolon/builder": "^1.1.1",
"@types/jest": "^29.5.1",
"@types/jsdom": "^21.1.1",
"@types/node": "^20.1.0",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"core-js": "^3.31.0",
"esbuild": "^0.17.18",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.5.0",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-promise": "^6.1.1",
"htmlparser-benchmark": "^1.1.3",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jsdom": "^22.1.0",
"npm-run-all": "^4.1.5",
"prettier": "3.0.3",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}