[6a3a178] | 1 | {
|
---|
[59329aa] | 2 | "_args": [
|
---|
| 3 | [
|
---|
| 4 | "smart-buffer@4.2.0",
|
---|
| 5 | "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front"
|
---|
| 6 | ]
|
---|
| 7 | ],
|
---|
| 8 | "_development": true,
|
---|
| 9 | "_from": "smart-buffer@4.2.0",
|
---|
| 10 | "_id": "smart-buffer@4.2.0",
|
---|
| 11 | "_inBundle": false,
|
---|
| 12 | "_integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==",
|
---|
| 13 | "_location": "/smart-buffer",
|
---|
| 14 | "_phantomChildren": {},
|
---|
| 15 | "_requested": {
|
---|
| 16 | "type": "version",
|
---|
| 17 | "registry": true,
|
---|
| 18 | "raw": "smart-buffer@4.2.0",
|
---|
| 19 | "name": "smart-buffer",
|
---|
| 20 | "escapedName": "smart-buffer",
|
---|
| 21 | "rawSpec": "4.2.0",
|
---|
| 22 | "saveSpec": null,
|
---|
| 23 | "fetchSpec": "4.2.0"
|
---|
| 24 | },
|
---|
| 25 | "_requiredBy": [
|
---|
| 26 | "/socks"
|
---|
| 27 | ],
|
---|
| 28 | "_resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz",
|
---|
| 29 | "_spec": "4.2.0",
|
---|
| 30 | "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front",
|
---|
| 31 | "author": {
|
---|
| 32 | "name": "Josh Glazebrook"
|
---|
[6a3a178] | 33 | },
|
---|
| 34 | "bugs": {
|
---|
| 35 | "url": "https://github.com/JoshGlazebrook/smart-buffer/issues"
|
---|
| 36 | },
|
---|
[59329aa] | 37 | "contributors": [
|
---|
| 38 | {
|
---|
| 39 | "name": "syvita"
|
---|
| 40 | }
|
---|
[6a3a178] | 41 | ],
|
---|
[59329aa] | 42 | "dependencies": {},
|
---|
| 43 | "description": "smart-buffer is a Buffer wrapper that adds automatic read & write offset tracking, string operations, data insertions, and more.",
|
---|
[6a3a178] | 44 | "devDependencies": {
|
---|
| 45 | "@types/chai": "4.1.7",
|
---|
| 46 | "@types/mocha": "5.2.7",
|
---|
| 47 | "@types/node": "^12.0.0",
|
---|
| 48 | "chai": "4.2.0",
|
---|
| 49 | "coveralls": "3.0.5",
|
---|
| 50 | "istanbul": "^0.4.5",
|
---|
| 51 | "mocha": "6.2.0",
|
---|
| 52 | "mocha-lcov-reporter": "^1.3.0",
|
---|
| 53 | "nyc": "14.1.1",
|
---|
| 54 | "source-map-support": "0.5.12",
|
---|
| 55 | "ts-node": "8.3.0",
|
---|
| 56 | "tslint": "5.18.0",
|
---|
| 57 | "typescript": "^3.2.1"
|
---|
| 58 | },
|
---|
[59329aa] | 59 | "engines": {
|
---|
| 60 | "node": ">= 6.0.0",
|
---|
| 61 | "npm": ">= 3.0.0"
|
---|
[6a3a178] | 62 | },
|
---|
[59329aa] | 63 | "homepage": "https://github.com/JoshGlazebrook/smart-buffer/",
|
---|
| 64 | "keywords": [
|
---|
| 65 | "buffer",
|
---|
| 66 | "smart",
|
---|
| 67 | "packet",
|
---|
| 68 | "serialize",
|
---|
| 69 | "network",
|
---|
| 70 | "cursor",
|
---|
| 71 | "simple"
|
---|
| 72 | ],
|
---|
| 73 | "license": "MIT",
|
---|
| 74 | "main": "build/smartbuffer.js",
|
---|
| 75 | "name": "smart-buffer",
|
---|
[6a3a178] | 76 | "nyc": {
|
---|
| 77 | "extension": [
|
---|
| 78 | ".ts",
|
---|
| 79 | ".tsx"
|
---|
| 80 | ],
|
---|
| 81 | "include": [
|
---|
| 82 | "src/*.ts",
|
---|
| 83 | "src/**/*.ts"
|
---|
| 84 | ],
|
---|
| 85 | "exclude": [
|
---|
| 86 | "**.*.d.ts",
|
---|
| 87 | "node_modules",
|
---|
| 88 | "typings"
|
---|
| 89 | ],
|
---|
| 90 | "require": [
|
---|
| 91 | "ts-node/register"
|
---|
| 92 | ],
|
---|
| 93 | "reporter": [
|
---|
| 94 | "json",
|
---|
| 95 | "html"
|
---|
| 96 | ],
|
---|
| 97 | "all": true
|
---|
[59329aa] | 98 | },
|
---|
| 99 | "repository": {
|
---|
| 100 | "type": "git",
|
---|
| 101 | "url": "git+https://github.com/JoshGlazebrook/smart-buffer.git"
|
---|
| 102 | },
|
---|
| 103 | "scripts": {
|
---|
| 104 | "build": "tsc -p ./",
|
---|
| 105 | "coverage": "NODE_ENV=test nyc npm test",
|
---|
| 106 | "coveralls": "NODE_ENV=test nyc npm test && nyc report --reporter=text-lcov | coveralls",
|
---|
| 107 | "lint": "tslint --type-check --project tsconfig.json 'src/**/*.ts'",
|
---|
| 108 | "prepublish": "npm install -g typescript && npm run build",
|
---|
| 109 | "test": "NODE_ENV=test mocha --recursive --require ts-node/register test/**/*.ts"
|
---|
| 110 | },
|
---|
| 111 | "typings": "typings/smartbuffer.d.ts",
|
---|
| 112 | "version": "4.2.0"
|
---|
[6a3a178] | 113 | }
|
---|