147 lines
4 KiB
JSON
147 lines
4 KiB
JSON
{
|
|
"_from": "cheerio",
|
|
"_id": "cheerio@1.0.0-rc.10",
|
|
"_inBundle": false,
|
|
"_integrity": "sha512-g0J0q/O6mW8z5zxQ3A8E8J1hUgp4SMOvEoW/x84OwyHKe/Zccz83PVT4y5Crcr530FV6NgmKI1qvGTKVl9XXVw==",
|
|
"_location": "/cheerio",
|
|
"_phantomChildren": {},
|
|
"_requested": {
|
|
"type": "tag",
|
|
"registry": true,
|
|
"raw": "cheerio",
|
|
"name": "cheerio",
|
|
"escapedName": "cheerio",
|
|
"rawSpec": "",
|
|
"saveSpec": null,
|
|
"fetchSpec": "latest"
|
|
},
|
|
"_requiredBy": [
|
|
"#USER",
|
|
"/"
|
|
],
|
|
"_resolved": "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.10.tgz",
|
|
"_shasum": "2ba3dcdfcc26e7956fc1f440e61d51c643379f3e",
|
|
"_spec": "cheerio",
|
|
"_where": "/home/runner/work/public_library_map/public_library_map",
|
|
"author": {
|
|
"name": "Matt Mueller",
|
|
"email": "mattmuelle@gmail.com"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/cheeriojs/cheerio/issues"
|
|
},
|
|
"bundleDependencies": false,
|
|
"dependencies": {
|
|
"cheerio-select": "^1.5.0",
|
|
"dom-serializer": "^1.3.2",
|
|
"domhandler": "^4.2.0",
|
|
"htmlparser2": "^6.1.0",
|
|
"parse5": "^6.0.1",
|
|
"parse5-htmlparser2-tree-adapter": "^6.0.1",
|
|
"tslib": "^2.2.0"
|
|
},
|
|
"deprecated": false,
|
|
"description": "Tiny, fast, and elegant implementation of core jQuery designed specifically for the server",
|
|
"devDependencies": {
|
|
"@octokit/graphql": "^4.6.2",
|
|
"@types/benchmark": "^2.1.0",
|
|
"@types/jest": "^26.0.23",
|
|
"@types/jsdom": "^16.2.10",
|
|
"@types/node": "^15.12.1",
|
|
"@types/node-fetch": "^2.5.10",
|
|
"@types/parse5": "^6.0.0",
|
|
"@types/parse5-htmlparser2-tree-adapter": "^6.0.0",
|
|
"@typescript-eslint/eslint-plugin": "^4.26.0",
|
|
"@typescript-eslint/parser": "^4.26.0",
|
|
"benchmark": "^2.1.4",
|
|
"eslint": "^7.28.0",
|
|
"eslint-config-prettier": "^8.3.0",
|
|
"eslint-plugin-jest": "^24.3.6",
|
|
"eslint-plugin-jsdoc": "^35.1.3",
|
|
"eslint-plugin-node": "^11.1.0",
|
|
"husky": "^4.3.8",
|
|
"jest": "^27.0.4",
|
|
"jquery": "^3.6.0",
|
|
"jsdom": "^16.6.0",
|
|
"lint-staged": "^11.0.0",
|
|
"node-fetch": "^2.6.1",
|
|
"prettier": "^2.3.1",
|
|
"prettier-plugin-jsdoc": "0.3.22",
|
|
"ts-jest": "^27.0.3",
|
|
"ts-node": "^10.0.0",
|
|
"typedoc": "^0.20.36",
|
|
"typescript": "^4.2.4"
|
|
},
|
|
"engines": {
|
|
"node": ">= 6"
|
|
},
|
|
"files": [
|
|
"lib"
|
|
],
|
|
"funding": "https://github.com/cheeriojs/cheerio?sponsor=1",
|
|
"homepage": "https://cheerio.js.org/",
|
|
"jest": {
|
|
"preset": "ts-jest",
|
|
"testEnvironment": "node",
|
|
"testPathIgnorePatterns": [
|
|
"/__fixtures__/"
|
|
]
|
|
},
|
|
"keywords": [
|
|
"htmlparser",
|
|
"jquery",
|
|
"selector",
|
|
"scraper",
|
|
"parser",
|
|
"html"
|
|
],
|
|
"license": "MIT",
|
|
"lint-staged": {
|
|
"*.js": [
|
|
"prettier --write",
|
|
"npm run test:lint -- --fix"
|
|
],
|
|
"*.{json,md,ts,yml}": [
|
|
"prettier --write"
|
|
]
|
|
},
|
|
"main": "lib/index.js",
|
|
"maintainers": [
|
|
{
|
|
"name": "Felix Boehm",
|
|
"email": "me@feedic.com"
|
|
}
|
|
],
|
|
"name": "cheerio",
|
|
"prettier": {
|
|
"singleQuote": true,
|
|
"tabWidth": 2,
|
|
"tsdoc": true
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/cheeriojs/cheerio.git"
|
|
},
|
|
"scripts": {
|
|
"bench": "npm run benchmark",
|
|
"benchmark": "ts-node benchmark/benchmark.ts --regex \"^(?!.*highmem)\"",
|
|
"build": "tsc",
|
|
"build:docs": "typedoc --hideGenerator src/index.ts",
|
|
"format": "npm run format:es && npm run format:prettier",
|
|
"format:es": "npm run lint:es -- --fix",
|
|
"format:prettier": "npm run format:prettier:raw -- --write",
|
|
"format:prettier:raw": "prettier \"**/*.{js,ts,md,json,yml}\" --ignore-path .gitignore",
|
|
"lint": "npm run lint:es && npm run lint:prettier",
|
|
"lint:es": "eslint --ignore-path .gitignore .",
|
|
"lint:prettier": "npm run format:prettier:raw -- --check",
|
|
"pre-commit": "lint-staged",
|
|
"prepublishOnly": "npm run build",
|
|
"test": "npm run lint && npm run test:jest",
|
|
"test:jest": "jest",
|
|
"test:jest:cov": "npm run test:jest -- --coverage",
|
|
"update-sponsors": "ts-node scripts/fetch-sponsors.ts"
|
|
},
|
|
"types": "lib/index.d.ts",
|
|
"version": "1.0.0-rc.10"
|
|
}
|