Changeset 59329aa for trip-planner-front/node_modules/css-select
- Timestamp:
- 11/23/21 14:58:44 (3 years ago)
- Branches:
- master
- Children:
- e29cc2e
- Parents:
- ceaed42
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trip-planner-front/node_modules/css-select/package.json
rceaed42 r59329aa 1 1 { 2 "_args": [ 3 [ 4 "css-select@4.1.3", 5 "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front" 6 ] 7 ], 8 "_development": true, 9 "_from": "css-select@4.1.3", 10 "_id": "css-select@4.1.3", 11 "_inBundle": false, 12 "_integrity": "sha512-gT3wBNd9Nj49rAbmtFHj1cljIAOLYSX1nZ8CB7TBO3INYckygm5B7LISU/szY//YmdiSLbJvDLOx9VnMVpMBxA==", 13 "_location": "/css-select", 14 "_phantomChildren": {}, 15 "_requested": { 16 "type": "version", 17 "registry": true, 18 "raw": "css-select@4.1.3", 2 19 "name": "css-select", 3 "version": "4.1.3", 4 "description": "a CSS selector compiler/engine", 5 "author": "Felix Boehm <me@feedic.com>", 6 "funding": { 7 "url": "https://github.com/sponsors/fb55" 8 }, 9 "keywords": [ 10 "css", 11 "selector", 12 "sizzle" 13 ], 14 "repository": { 15 "type": "git", 16 "url": "git://github.com/fb55/css-select.git" 17 }, 18 "main": "lib/index.js", 19 "types": "lib/index.d.ts", 20 "files": [ 21 "lib" 22 ], 23 "dependencies": { 24 "boolbase": "^1.0.0", 25 "css-what": "^5.0.0", 26 "domhandler": "^4.2.0", 27 "domutils": "^2.6.0", 28 "nth-check": "^2.0.0" 29 }, 30 "devDependencies": { 31 "@types/boolbase": "^1.0.0", 32 "@types/jest": "^26.0.14", 33 "@types/node": "^15.0.2", 34 "@typescript-eslint/eslint-plugin": "^4.1.0", 35 "@typescript-eslint/parser": "^4.1.0", 36 "cheerio-soupselect": "^0.1.1", 37 "coveralls": "^3.0.2", 38 "eslint": "^7.9.0", 39 "eslint-config-prettier": "^8.1.0", 40 "htmlparser2": "^6.0.0", 41 "jest": "^27.0.3", 42 "prettier": "^2.1.2", 43 "ts-jest": "^27.0.1", 44 "typescript": "^4.0.2" 45 }, 46 "scripts": { 47 "test": "jest --coverage && npm run lint", 48 "coverage": "cat coverage/lcov.info | coveralls", 49 "lint": "npm run lint:es && npm run lint:prettier", 50 "lint:es": "eslint src", 51 "lint:prettier": "npm run prettier -- --check", 52 "format": "npm run format:es && npm run format:prettier", 53 "format:es": "npm run lint:es -- --fix", 54 "format:prettier": "npm run prettier -- --write", 55 "prettier": "prettier '**/*.{ts,md,json,yml}'", 56 "build": "tsc", 57 "prepare": "npm run build" 58 }, 59 "license": "BSD-2-Clause", 60 "prettier": { 61 "tabWidth": 4, 62 "proseWrap": "always" 63 }, 64 "jest": { 65 "preset": "ts-jest", 66 "testEnvironment": "node", 67 "testMatch": [ 68 "<rootDir>/test/*.ts" 69 ] 70 } 20 "escapedName": "css-select", 21 "rawSpec": "4.1.3", 22 "saveSpec": null, 23 "fetchSpec": "4.1.3" 24 }, 25 "_requiredBy": [ 26 "/svgo" 27 ], 28 "_resolved": "https://registry.npmjs.org/css-select/-/css-select-4.1.3.tgz", 29 "_spec": "4.1.3", 30 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front", 31 "author": { 32 "name": "Felix Boehm", 33 "email": "me@feedic.com" 34 }, 35 "bugs": { 36 "url": "https://github.com/fb55/css-select/issues" 37 }, 38 "dependencies": { 39 "boolbase": "^1.0.0", 40 "css-what": "^5.0.0", 41 "domhandler": "^4.2.0", 42 "domutils": "^2.6.0", 43 "nth-check": "^2.0.0" 44 }, 45 "description": "a CSS selector compiler/engine", 46 "devDependencies": { 47 "@types/boolbase": "^1.0.0", 48 "@types/jest": "^26.0.14", 49 "@types/node": "^15.0.2", 50 "@typescript-eslint/eslint-plugin": "^4.1.0", 51 "@typescript-eslint/parser": "^4.1.0", 52 "cheerio-soupselect": "^0.1.1", 53 "coveralls": "^3.0.2", 54 "eslint": "^7.9.0", 55 "eslint-config-prettier": "^8.1.0", 56 "htmlparser2": "^6.0.0", 57 "jest": "^27.0.3", 58 "prettier": "^2.1.2", 59 "ts-jest": "^27.0.1", 60 "typescript": "^4.0.2" 61 }, 62 "files": [ 63 "lib" 64 ], 65 "funding": { 66 "url": "https://github.com/sponsors/fb55" 67 }, 68 "homepage": "https://github.com/fb55/css-select#readme", 69 "jest": { 70 "preset": "ts-jest", 71 "testEnvironment": "node", 72 "testMatch": [ 73 "<rootDir>/test/*.ts" 74 ] 75 }, 76 "keywords": [ 77 "css", 78 "selector", 79 "sizzle" 80 ], 81 "license": "BSD-2-Clause", 82 "main": "lib/index.js", 83 "name": "css-select", 84 "prettier": { 85 "tabWidth": 4, 86 "proseWrap": "always" 87 }, 88 "repository": { 89 "type": "git", 90 "url": "git://github.com/fb55/css-select.git" 91 }, 92 "scripts": { 93 "build": "tsc", 94 "coverage": "cat coverage/lcov.info | coveralls", 95 "format": "npm run format:es && npm run format:prettier", 96 "format:es": "npm run lint:es -- --fix", 97 "format:prettier": "npm run prettier -- --write", 98 "lint": "npm run lint:es && npm run lint:prettier", 99 "lint:es": "eslint src", 100 "lint:prettier": "npm run prettier -- --check", 101 "prepare": "npm run build", 102 "prettier": "prettier '**/*.{ts,md,json,yml}'", 103 "test": "jest --coverage && npm run lint" 104 }, 105 "types": "lib/index.d.ts", 106 "version": "4.1.3" 71 107 }
Note:
See TracChangeset
for help on using the changeset viewer.