Last change
on this file since 6a3a178 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
1.5 KB
|
Line | |
---|
1 | {
|
---|
2 | "name": "domhandler",
|
---|
3 | "version": "4.2.2",
|
---|
4 | "description": "Handler for htmlparser2 that turns pages into a dom",
|
---|
5 | "author": "Felix Boehm <me@feedic.com>",
|
---|
6 | "funding": {
|
---|
7 | "url": "https://github.com/fb55/domhandler?sponsor=1"
|
---|
8 | },
|
---|
9 | "license": "BSD-2-Clause",
|
---|
10 | "main": "lib/index.js",
|
---|
11 | "types": "lib/index.d.ts",
|
---|
12 | "sideEffects": false,
|
---|
13 | "files": [
|
---|
14 | "lib"
|
---|
15 | ],
|
---|
16 | "scripts": {
|
---|
17 | "test": "npm run test:jest && npm run lint",
|
---|
18 | "test:jest": "jest",
|
---|
19 | "lint": "eslint src",
|
---|
20 | "format": "prettier --write '**/*.{ts,md,json}'",
|
---|
21 | "build": "tsc",
|
---|
22 | "prepare": "npm run build"
|
---|
23 | },
|
---|
24 | "repository": {
|
---|
25 | "type": "git",
|
---|
26 | "url": "git://github.com/fb55/domhandler.git"
|
---|
27 | },
|
---|
28 | "keywords": [
|
---|
29 | "dom",
|
---|
30 | "htmlparser2"
|
---|
31 | ],
|
---|
32 | "engines": {
|
---|
33 | "node": ">= 4"
|
---|
34 | },
|
---|
35 | "dependencies": {
|
---|
36 | "domelementtype": "^2.2.0"
|
---|
37 | },
|
---|
38 | "devDependencies": {
|
---|
39 | "@types/jest": "^27.0.1",
|
---|
40 | "@types/node": "^16.7.2",
|
---|
41 | "@typescript-eslint/eslint-plugin": "^4.29.3",
|
---|
42 | "@typescript-eslint/parser": "^4.29.3",
|
---|
43 | "eslint": "^7.32.0",
|
---|
44 | "eslint-config-prettier": "^8.1.0",
|
---|
45 | "htmlparser2": "^7.1.1",
|
---|
46 | "jest": "^27.1.0",
|
---|
47 | "prettier": "^2.0.5",
|
---|
48 | "ts-jest": "^27.0.5",
|
---|
49 | "typescript": "^4.4.2"
|
---|
50 | },
|
---|
51 | "jest": {
|
---|
52 | "preset": "ts-jest",
|
---|
53 | "testEnvironment": "node"
|
---|
54 | },
|
---|
55 | "prettier": {
|
---|
56 | "tabWidth": 4
|
---|
57 | }
|
---|
58 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.