- Timestamp:
- 11/25/21 22:08:24 (3 years ago)
- Branches:
- master
- Children:
- 8d391a1
- Parents:
- 59329aa
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trip-planner-front/node_modules/base64-arraybuffer/package.json
r59329aa re29cc2e 1 1 { 2 "_args": [ 3 [ 4 "base64-arraybuffer@0.1.4", 5 "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front" 6 ] 7 ], 8 "_development": true, 9 "_from": "base64-arraybuffer@0.1.4", 10 "_id": "base64-arraybuffer@0.1.4", 2 "_from": "base64-arraybuffer@~1.0.1", 3 "_id": "base64-arraybuffer@1.0.1", 11 4 "_inBundle": false, 12 "_integrity": "sha 1-mBjHngWbE1X5fgQooBfIOOkLqBI=",5 "_integrity": "sha512-vFIUq7FdLtjZMhATwDul5RZWv2jpXQ09Pd6jcVEOvIsqCWTRFD/ONHNfyOS8dA/Ippi5dsIgpyKWKZaAKZltbA==", 13 6 "_location": "/base64-arraybuffer", 14 7 "_phantomChildren": {}, 15 8 "_requested": { 16 "type": " version",9 "type": "range", 17 10 "registry": true, 18 "raw": "base64-arraybuffer@ 0.1.4",11 "raw": "base64-arraybuffer@~1.0.1", 19 12 "name": "base64-arraybuffer", 20 13 "escapedName": "base64-arraybuffer", 21 "rawSpec": " 0.1.4",14 "rawSpec": "~1.0.1", 22 15 "saveSpec": null, 23 "fetchSpec": " 0.1.4"16 "fetchSpec": "~1.0.1" 24 17 }, 25 18 "_requiredBy": [ 26 19 "/engine.io-parser" 27 20 ], 28 "_resolved": "https://registry.npmjs.org/base64-arraybuffer/-/base64-arraybuffer-0.1.4.tgz", 29 "_spec": "0.1.4", 30 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front", 21 "_resolved": "https://registry.npmjs.org/base64-arraybuffer/-/base64-arraybuffer-1.0.1.tgz", 22 "_shasum": "87bd13525626db4a9838e00a508c2b73efcf348c", 23 "_spec": "base64-arraybuffer@~1.0.1", 24 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front\\node_modules\\engine.io-parser", 31 25 "author": { 32 26 "name": "Niklas von Hertzen", 33 27 "email": "niklasvh@gmail.com", 34 "url": "http ://hertzen.com"28 "url": "https://hertzen.com" 35 29 }, 36 30 "bugs": { 37 31 "url": "https://github.com/niklasvh/base64-arraybuffer/issues" 38 32 }, 33 "bundleDependencies": false, 34 "deprecated": false, 39 35 "description": "Encode/decode base64 data into ArrayBuffers", 40 36 "devDependencies": { 41 "grunt": "^0.4.5", 42 "grunt-cli": "^0.1.13", 43 "grunt-contrib-jshint": "^0.11.2", 44 "grunt-contrib-nodeunit": "^0.4.1", 45 "grunt-contrib-watch": "^0.6.1" 37 "@rollup/plugin-commonjs": "^19.0.0", 38 "@rollup/plugin-node-resolve": "^13.0.0", 39 "@rollup/plugin-typescript": "^8.2.1", 40 "@types/mocha": "^8.2.2", 41 "@types/node": "^16.0.0", 42 "mocha": "9.0.2", 43 "prettier": "^2.3.2", 44 "rimraf": "3.0.2", 45 "rollup": "^2.52.7", 46 "rollup-plugin-json": "^4.0.0", 47 "rollup-plugin-sourcemaps": "^0.6.3", 48 "standard-version": "^9.3.0", 49 "ts-node": "^10.0.0", 50 "tslib": "^2.3.0", 51 "tslint": "^6.1.3", 52 "tslint-config-prettier": "^1.18.0", 53 "typescript": "^4.3.5" 46 54 }, 47 55 "engines": { … … 50 58 "homepage": "https://github.com/niklasvh/base64-arraybuffer", 51 59 "keywords": [], 52 "licenses": [ 53 { 54 "type": "MIT", 55 "url": "https://github.com/niklasvh/base64-arraybuffer/blob/master/LICENSE-MIT" 56 } 57 ], 58 "main": "lib/base64-arraybuffer", 60 "license": "MIT", 61 "main": "dist/base64-arraybuffer.umd.js", 62 "module": "dist/base64-arraybuffer.es5.js", 59 63 "name": "base64-arraybuffer", 60 64 "repository": { … … 63 67 }, 64 68 "scripts": { 65 "test": "grunt nodeunit" 69 "build": "tsc --module commonjs && rollup -c rollup.config.ts", 70 "format": "prettier --write \"{src,test}/**/*.ts\"", 71 "lint": "tslint -c tslint.json --project tsconfig.json -t codeFrame src/**/*.ts test/**/*.ts", 72 "mocha": "mocha --require ts-node/register test/*.ts", 73 "prebuild": "rimraf dist/", 74 "release": "standard-version", 75 "test": "npm run lint && npm run mocha" 66 76 }, 67 "version": "0.1.4" 77 "typings": "dist/types/index.d.ts", 78 "version": "1.0.1" 68 79 }
Note:
See TracChangeset
for help on using the changeset viewer.