You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
77 lines
2.6 KiB
77 lines
2.6 KiB
2 years ago
|
{
|
||
|
"name": "domutils",
|
||
|
"version": "3.0.1",
|
||
|
"description": "Utilities for working with htmlparser2's dom",
|
||
|
"author": "Felix Boehm <me@feedic.com>",
|
||
|
"funding": {
|
||
|
"url": "https://github.com/fb55/domutils?sponsor=1"
|
||
|
},
|
||
|
"license": "BSD-2-Clause",
|
||
|
"sideEffects": false,
|
||
|
"main": "lib/index.js",
|
||
|
"types": "lib/index.d.ts",
|
||
|
"module": "lib/esm/index.js",
|
||
|
"exports": {
|
||
|
"require": "./lib/index.js",
|
||
|
"import": "./lib/esm/index.js"
|
||
|
},
|
||
|
"files": [
|
||
|
"lib/**/*"
|
||
|
],
|
||
|
"scripts": {
|
||
|
"test": "npm run test:jest && npm run lint",
|
||
|
"test:jest": "jest",
|
||
|
"lint": "npm run lint:es && npm run lint:prettier",
|
||
|
"lint:es": "eslint --ignore-path .gitignore .",
|
||
|
"lint:prettier": "npm run prettier -- --check",
|
||
|
"format": "npm run format:es && npm run format:prettier",
|
||
|
"format:es": "npm run lint:es -- --fix",
|
||
|
"format:prettier": "npm run prettier -- --write",
|
||
|
"prettier": "prettier \"**/*.{ts,md,json,yml}\" --ignore-path .gitignore",
|
||
|
"build": "npm run build:cjs && npm run build:esm",
|
||
|
"build:cjs": "tsc --sourceRoot https://raw.githubusercontent.com/fb55/domutils/$(git rev-parse HEAD)/src/",
|
||
|
"build:esm": "npm run build:cjs -- --module esnext --target es2019 --outDir lib/esm && echo '{\"type\":\"module\"}' > lib/esm/package.json",
|
||
|
"build:docs": "typedoc --hideGenerator --exclude \"**/*+(index|.spec).ts\" --categorizeByGroup false --sort enum-value-ascending --sort alphabetical src",
|
||
|
"prepare": "npm run build"
|
||
|
},
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "git://github.com/fb55/domutils.git"
|
||
|
},
|
||
|
"keywords": [
|
||
|
"dom",
|
||
|
"htmlparser2"
|
||
|
],
|
||
|
"dependencies": {
|
||
|
"dom-serializer": "^2.0.0",
|
||
|
"domelementtype": "^2.3.0",
|
||
|
"domhandler": "^5.0.1"
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"@types/jest": "^27.4.1",
|
||
|
"@types/node": "^17.0.25",
|
||
|
"@typescript-eslint/eslint-plugin": "^5.20.0",
|
||
|
"@typescript-eslint/parser": "^5.20.0",
|
||
|
"eslint": "^8.13.0",
|
||
|
"eslint-config-prettier": "^8.5.0",
|
||
|
"eslint-plugin-jsdoc": "^39.2.7",
|
||
|
"htmlparser2": "~7.2.0",
|
||
|
"jest": "^27.5.1",
|
||
|
"prettier": "^2.6.2",
|
||
|
"ts-jest": "^27.1.4",
|
||
|
"typedoc": "^0.22.15",
|
||
|
"typescript": "^4.6.3"
|
||
|
},
|
||
|
"jest": {
|
||
|
"preset": "ts-jest",
|
||
|
"testEnvironment": "node",
|
||
|
"coverageProvider": "v8",
|
||
|
"moduleNameMapper": {
|
||
|
"^(.*)\\.js$": "$1"
|
||
|
}
|
||
|
},
|
||
|
"prettier": {
|
||
|
"tabWidth": 4
|
||
|
}
|
||
|
}
|