- 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/nth-check/package.json
rceaed42 r59329aa 1 1 { 2 "_args": [ 3 [ 4 "nth-check@2.0.1", 5 "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front" 6 ] 7 ], 8 "_development": true, 9 "_from": "nth-check@2.0.1", 10 "_id": "nth-check@2.0.1", 11 "_inBundle": false, 12 "_integrity": "sha512-it1vE95zF6dTT9lBsYbxvqh0Soy4SPowchj0UBGj/V6cTPnXXtQOPUbhZ6CmGzAD/rW22LQK6E96pcdJXk4A4w==", 13 "_location": "/nth-check", 14 "_phantomChildren": {}, 15 "_requested": { 16 "type": "version", 17 "registry": true, 18 "raw": "nth-check@2.0.1", 2 19 "name": "nth-check", 3 "version": "2.0.1", 4 "description": "Parses and compiles CSS nth-checks to highly optimized functions.", 5 "author": "Felix Boehm <me@feedic.com>", 6 "license": "BSD-2-Clause", 7 "sideEffects": false, 8 "funding": { 9 "url": "https://github.com/fb55/nth-check?sponsor=1" 10 }, 11 "directories": { 12 "lib": "lib/" 13 }, 14 "main": "lib/index.js", 15 "types": "lib/index.d.ts", 16 "files": [ 17 "lib/**/*" 18 ], 19 "scripts": { 20 "test": "npm run test:jest && npm run lint", 21 "test:jest": "jest", 22 "lint": "npm run lint:es && npm run lint:prettier", 23 "lint:es": "eslint .", 24 "lint:prettier": "npm run prettier -- --check", 25 "format": "npm run format:es && npm run format:prettier", 26 "format:es": "npm run lint:es -- --fix", 27 "format:prettier": "npm run prettier -- --write", 28 "prettier": "prettier '**/*.{ts,md,json,yml}'", 29 "build": "tsc", 30 "prepare": "npm run build" 31 }, 32 "repository": { 33 "type": "git", 34 "url": "https://github.com/fb55/nth-check" 35 }, 36 "keywords": [ 37 "nth-child", 38 "nth", 39 "css" 40 ], 41 "bugs": { 42 "url": "https://github.com/fb55/nth-check/issues" 43 }, 44 "homepage": "https://github.com/fb55/nth-check", 45 "dependencies": { 46 "boolbase": "^1.0.0" 47 }, 48 "devDependencies": { 49 "@types/jest": "^27.0.1", 50 "@types/node": "^16.9.1", 51 "@typescript-eslint/eslint-plugin": "^4.31.1", 52 "@typescript-eslint/parser": "^4.31.1", 53 "eslint": "^7.32.0", 54 "eslint-config-prettier": "^8.3.0", 55 "jest": "^27.2.0", 56 "prettier": "^2.4.1", 57 "ts-jest": "^27.0.5", 58 "typescript": "^4.4.3" 59 }, 60 "jest": { 61 "preset": "ts-jest", 62 "testEnvironment": "node" 63 }, 64 "prettier": { 65 "tabWidth": 4 66 } 20 "escapedName": "nth-check", 21 "rawSpec": "2.0.1", 22 "saveSpec": null, 23 "fetchSpec": "2.0.1" 24 }, 25 "_requiredBy": [ 26 "/css-select" 27 ], 28 "_resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.0.1.tgz", 29 "_spec": "2.0.1", 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/nth-check/issues" 37 }, 38 "dependencies": { 39 "boolbase": "^1.0.0" 40 }, 41 "description": "Parses and compiles CSS nth-checks to highly optimized functions.", 42 "devDependencies": { 43 "@types/jest": "^27.0.1", 44 "@types/node": "^16.9.1", 45 "@typescript-eslint/eslint-plugin": "^4.31.1", 46 "@typescript-eslint/parser": "^4.31.1", 47 "eslint": "^7.32.0", 48 "eslint-config-prettier": "^8.3.0", 49 "jest": "^27.2.0", 50 "prettier": "^2.4.1", 51 "ts-jest": "^27.0.5", 52 "typescript": "^4.4.3" 53 }, 54 "directories": { 55 "lib": "lib/" 56 }, 57 "files": [ 58 "lib/**/*" 59 ], 60 "funding": { 61 "url": "https://github.com/fb55/nth-check?sponsor=1" 62 }, 63 "homepage": "https://github.com/fb55/nth-check", 64 "jest": { 65 "preset": "ts-jest", 66 "testEnvironment": "node" 67 }, 68 "keywords": [ 69 "nth-child", 70 "nth", 71 "css" 72 ], 73 "license": "BSD-2-Clause", 74 "main": "lib/index.js", 75 "name": "nth-check", 76 "prettier": { 77 "tabWidth": 4 78 }, 79 "repository": { 80 "type": "git", 81 "url": "git+https://github.com/fb55/nth-check.git" 82 }, 83 "scripts": { 84 "build": "tsc", 85 "format": "npm run format:es && npm run format:prettier", 86 "format:es": "npm run lint:es -- --fix", 87 "format:prettier": "npm run prettier -- --write", 88 "lint": "npm run lint:es && npm run lint:prettier", 89 "lint:es": "eslint .", 90 "lint:prettier": "npm run prettier -- --check", 91 "prepare": "npm run build", 92 "prettier": "prettier '**/*.{ts,md,json,yml}'", 93 "test": "npm run test:jest && npm run lint", 94 "test:jest": "jest" 95 }, 96 "sideEffects": false, 97 "types": "lib/index.d.ts", 98 "version": "2.0.1" 67 99 }
Note:
See TracChangeset
for help on using the changeset viewer.