CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes48downloads
package.json77 linesDownload Raw Back to cheerio-select
1{2    "name": "cheerio-select",3    "description": "CSS selector engine supporting jQuery selectors",4    "version": "2.1.0",5    "author": "Felix Boehm <me@feedic.com>",6    "funding": {7        "url": "https://github.com/sponsors/fb55"8    },9    "license": "BSD-2-Clause",10    "sideEffects": false,11    "repository": {12        "type": "git",13        "url": "git://github.com/cheeriojs/cheerio-select.git"14    },15    "directories": {16        "lib": "lib/"17    },18    "main": "lib/index.js",19    "types": "lib/index.d.ts",20    "module": "lib/esm/index.js",21    "exports": {22        "require": "./lib/index.js",23        "import": "./lib/esm/index.js"24    },25    "files": [26        "lib/**/*"27    ],28    "scripts": {29        "test": "npm run test:jest && npm run lint",30        "test:jest": "jest",31        "lint": "npm run lint:es && npm run lint:prettier",32        "lint:es": "eslint src",33        "lint:prettier": "npm run format:prettier:raw -- --check",34        "format": "npm run format:es && npm run format:prettier",35        "format:es": "npm run lint:es -- --fix",36        "format:prettier": "npm run format:prettier:raw -- --write",37        "format:prettier:raw": "prettier '**/*.{ts,md,json,yml}'",38        "build": "npm run build:cjs && npm run build:esm",39        "build:cjs": "tsc --sourceRoot https://raw.githubusercontent.com/cheeriojs/cheerio-select/$(git rev-parse HEAD)/src/",40        "build:esm": "npm run build:cjs -- --module esnext --target es2019 --outDir lib/esm && echo '{\"type\":\"module\"}' > lib/esm/package.json",41        "prepare": "npm run build"42    },43    "dependencies": {44        "boolbase": "^1.0.0",45        "css-select": "^5.1.0",46        "css-what": "^6.1.0",47        "domelementtype": "^2.3.0",48        "domhandler": "^5.0.3",49        "domutils": "^3.0.1"50    },51    "devDependencies": {52        "@types/boolbase": "^1.0.1",53        "@types/jest": "^27.5.0",54        "@types/node": "^17.0.33",55        "@typescript-eslint/eslint-plugin": "^5.23.0",56        "@typescript-eslint/parser": "^5.23.0",57        "eslint": "^8.15.0",58        "eslint-config-prettier": "^8.5.0",59        "htmlparser2": "^8.0.1",60        "jest": "^27.5.1",61        "prettier": "^2.6.2",62        "ts-jest": "^27.1.4",63        "typescript": "^4.6.4"64    },65    "jest": {66        "preset": "ts-jest",67        "testEnvironment": "node",68        "coverageProvider": "v8",69        "moduleNameMapper": {70            "^(.*)\\.js$": "$1"71        }72    },73    "prettier": {74        "tabWidth": 475    }76}77 
basant307/AI_Governance_Project · CoolFace