- 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/schema-utils/package.json
rceaed42 r59329aa 1 1 { 2 "name": "schema-utils", 3 "version": "2.7.1", 2 "_args": [ 3 [ 4 "schema-utils@2.7.1", 5 "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front" 6 ] 7 ], 8 "_development": true, 9 "_from": "schema-utils@2.7.1", 10 "_id": "schema-utils@2.7.1", 11 "_inBundle": false, 12 "_integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", 13 "_location": "/schema-utils", 14 "_phantomChildren": { 15 "fast-deep-equal": "3.1.3", 16 "fast-json-stable-stringify": "2.1.0", 17 "uri-js": "4.4.1" 18 }, 19 "_requested": { 20 "type": "version", 21 "registry": true, 22 "raw": "schema-utils@2.7.1", 23 "name": "schema-utils", 24 "escapedName": "schema-utils", 25 "rawSpec": "2.7.1", 26 "saveSpec": null, 27 "fetchSpec": "2.7.1" 28 }, 29 "_requiredBy": [ 30 "/@jsdevtools/coverage-istanbul-loader", 31 "/babel-loader" 32 ], 33 "_resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", 34 "_spec": "2.7.1", 35 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front", 36 "author": { 37 "name": "webpack Contrib", 38 "url": "https://github.com/webpack-contrib" 39 }, 40 "bugs": { 41 "url": "https://github.com/webpack/schema-utils/issues" 42 }, 43 "dependencies": { 44 "@types/json-schema": "^7.0.5", 45 "ajv": "^6.12.4", 46 "ajv-keywords": "^3.5.2" 47 }, 4 48 "description": "webpack Validation Utils", 5 "license": "MIT",6 "repository": "webpack/schema-utils",7 "author": "webpack Contrib (https://github.com/webpack-contrib)",8 "homepage": "https://github.com/webpack/schema-utils",9 "bugs": "https://github.com/webpack/schema-utils/issues",10 "funding": {11 "type": "opencollective",12 "url": "https://opencollective.com/webpack"13 },14 "main": "dist/index.js",15 "types": "declarations/index.d.ts",16 "engines": {17 "node": ">= 8.9.0"18 },19 "scripts": {20 "start": "npm run build -- -w",21 "clean": "del-cli dist declarations",22 "prebuild": "npm run clean",23 "build:types": "tsc --declaration --emitDeclarationOnly --outDir declarations && prettier \"declarations/**/*.ts\" --write",24 "build:code": "cross-env NODE_ENV=production babel src -d dist --copy-files",25 "build": "npm-run-all -p \"build:**\"",26 "commitlint": "commitlint --from=master",27 "security": "npm audit",28 "lint:prettier": "prettier \"{**/*,*}.{js,json,md,yml,css,ts}\" --list-different",29 "lint:js": "eslint --cache .",30 "lint:types": "tsc --pretty --noEmit",31 "lint": "npm-run-all -l -p \"lint:**\"",32 "test:only": "cross-env NODE_ENV=test jest",33 "test:watch": "npm run test:only -- --watch",34 "test:coverage": "npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage",35 "pretest": "npm run lint",36 "test": "npm run test:coverage",37 "prepare": "npm run build",38 "release": "standard-version",39 "defaults": "webpack-defaults"40 },41 "files": [42 "dist",43 "declarations"44 ],45 "dependencies": {46 "ajv": "^6.12.4",47 "ajv-keywords": "^3.5.2",48 "@types/json-schema": "^7.0.5"49 },50 49 "devDependencies": { 51 50 "@babel/cli": "^7.10.5", … … 71 70 "typescript": "^4.0.2" 72 71 }, 72 "engines": { 73 "node": ">= 8.9.0" 74 }, 75 "files": [ 76 "dist", 77 "declarations" 78 ], 79 "funding": { 80 "type": "opencollective", 81 "url": "https://opencollective.com/webpack" 82 }, 83 "homepage": "https://github.com/webpack/schema-utils", 73 84 "keywords": [ 74 85 "webpack" 75 ] 86 ], 87 "license": "MIT", 88 "main": "dist/index.js", 89 "name": "schema-utils", 90 "repository": { 91 "type": "git", 92 "url": "git+https://github.com/webpack/schema-utils.git" 93 }, 94 "scripts": { 95 "build": "npm-run-all -p \"build:**\"", 96 "build:code": "cross-env NODE_ENV=production babel src -d dist --copy-files", 97 "build:types": "tsc --declaration --emitDeclarationOnly --outDir declarations && prettier \"declarations/**/*.ts\" --write", 98 "clean": "del-cli dist declarations", 99 "commitlint": "commitlint --from=master", 100 "defaults": "webpack-defaults", 101 "lint": "npm-run-all -l -p \"lint:**\"", 102 "lint:js": "eslint --cache .", 103 "lint:prettier": "prettier \"{**/*,*}.{js,json,md,yml,css,ts}\" --list-different", 104 "lint:types": "tsc --pretty --noEmit", 105 "prebuild": "npm run clean", 106 "prepare": "npm run build", 107 "pretest": "npm run lint", 108 "release": "standard-version", 109 "security": "npm audit", 110 "start": "npm run build -- -w", 111 "test": "npm run test:coverage", 112 "test:coverage": "npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage", 113 "test:only": "cross-env NODE_ENV=test jest", 114 "test:watch": "npm run test:only -- --watch" 115 }, 116 "types": "declarations/index.d.ts", 117 "version": "2.7.1" 76 118 }
Note:
See TracChangeset
for help on using the changeset viewer.