Changeset 59329aa for trip-planner-front/node_modules/jsonc-parser
- 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/jsonc-parser/package.json
rceaed42 r59329aa 1 1 { 2 "name": "jsonc-parser", 3 "version": "3.0.0", 4 "description": "Scanner and parser for JSON with comments.", 5 "main": "./lib/umd/main.js", 6 "typings": "./lib/umd/main", 7 "module": "./lib/esm/main.js", 8 "author": "Microsoft Corporation", 9 "repository": { 10 "type": "git", 11 "url": "https://github.com/microsoft/node-jsonc-parser" 2 "_args": [ 3 [ 4 "jsonc-parser@3.0.0", 5 "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front" 6 ] 7 ], 8 "_development": true, 9 "_from": "jsonc-parser@3.0.0", 10 "_id": "jsonc-parser@3.0.0", 11 "_inBundle": false, 12 "_integrity": "sha512-fQzRfAbIBnR0IQvftw9FJveWiHp72Fg20giDrHz6TdfB12UH/uue0D3hm57UB5KgAVuniLMCaS8P1IMj9NR7cA==", 13 "_location": "/jsonc-parser", 14 "_phantomChildren": {}, 15 "_requested": { 16 "type": "version", 17 "registry": true, 18 "raw": "jsonc-parser@3.0.0", 19 "name": "jsonc-parser", 20 "escapedName": "jsonc-parser", 21 "rawSpec": "3.0.0", 22 "saveSpec": null, 23 "fetchSpec": "3.0.0" 12 24 }, 13 "license": "MIT", 25 "_requiredBy": [ 26 "/@angular/cli", 27 "/@schematics/angular" 28 ], 29 "_resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.0.0.tgz", 30 "_spec": "3.0.0", 31 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front", 32 "author": { 33 "name": "Microsoft Corporation" 34 }, 14 35 "bugs": { 15 36 "url": "https://github.com/microsoft/node-jsonc-parser/issues" 16 37 }, 38 "description": "Scanner and parser for JSON with comments.", 17 39 "devDependencies": { 18 "mocha": "^8.2.1", 19 "typescript": "^4.0.5", 40 "@types/mocha": "^5.2.7", 20 41 "@types/node": "^10.12.12", 21 "@types/mocha": "^5.2.7",22 42 "@typescript-eslint/eslint-plugin": "^4.7.0", 23 43 "@typescript-eslint/parser": "^4.7.0", 24 44 "eslint": "^7.13.0", 25 "rimraf": "^3.0.2" 45 "mocha": "^8.2.1", 46 "rimraf": "^3.0.2", 47 "typescript": "^4.0.5" 48 }, 49 "homepage": "https://github.com/microsoft/node-jsonc-parser#readme", 50 "license": "MIT", 51 "main": "./lib/umd/main.js", 52 "module": "./lib/esm/main.js", 53 "name": "jsonc-parser", 54 "repository": { 55 "type": "git", 56 "url": "git+https://github.com/microsoft/node-jsonc-parser.git" 26 57 }, 27 58 "scripts": { 28 "prepublishOnly": "npm run clean && npm run compile-esm && npm run test && npm run remove-sourcemap-refs", 29 "postpublish": "node ./build/post-publish.js", 59 "clean": "rimraf lib", 30 60 "compile": "tsc -p ./src && npm run lint", 31 61 "compile-esm": "tsc -p ./src/tsconfig.esm.json", 62 "lint": "eslint src/**/*.ts", 63 "postpublish": "node ./build/post-publish.js", 64 "postversion": "git push && git push --tags", 65 "prepublishOnly": "npm run clean && npm run compile-esm && npm run test && npm run remove-sourcemap-refs", 66 "preversion": "npm test", 32 67 "remove-sourcemap-refs": "node ./build/remove-sourcemap-refs.js", 33 "clean": "rimraf lib",34 "watch": "tsc -w -p ./src",35 68 "test": "npm run compile && mocha ./lib/umd/test", 36 " lint": "eslint src/**/*.ts",37 "preversion": "npm test",38 "postversion": "git push && git push --tags"39 }69 "watch": "tsc -w -p ./src" 70 }, 71 "typings": "./lib/umd/main", 72 "version": "3.0.0" 40 73 }
Note:
See TracChangeset
for help on using the changeset viewer.