{
	"name": "streambox-collection",
	"version": "0.0.6",
	"description": "streambox-collection is a lightweight utility as a wrapper for displaying objects, arrays, strings, and number formats to clients using data streams.",
	"main": "./dist/index.js",
	"module": "./esm/index.js",
	"files": [
		"/dist/**",
		"/esm/**"
	],
	"scripts": {
		"clean:esm": "rimraf esm",
		"clean:cjs": "rimraf dist",
		"compiler:esm": "npm run clean:esm && tsc --outDir esm --module es6 --pretty",
		"compiler:cjs": "npm run clean:cjs && tsc --pretty",
		"build": "npm run compiler:cjs && npm run compiler:esm",
		"test": "jest",
		"test:coverage": "jest --coverage",
		"test:watch": "jest --watchAll",
		"test:coveralls": "jest --coverage && coveralls < coverage/lcov.info",
		"lint": "eslint src/**/*.{ts,spec.ts,test.ts} --fix",
		"format": "prettier src/**/*.{ts,spec.ts,test.ts} --write",
		"lint:fix": "npm run format && npm run lint"
	},
	"author": {
		"name": "Restu Wahyu Saputra",
		"email": "restuwahyu13@gmail.com"
	},
	"repository": {
		"url": "git+https://github.com/restuwahyu13/streambox-collection.git"
	},
	"homepage": "https://github.com/restuwahyu13/streambox-collection#readme",
	"bugs": {
		"url": "https://github.com/restuwahyu13/streambox-collection/issues"
	},
	"license": "MIT",
	"engines": {
		"node": ">=12",
		"npm": ">=6"
	},
	"keywords": [
		"streambox-collection",
		"stream",
		"grpc",
		"@grpc/grpc-js",
		"es6",
		"commonjs",
		"node",
		"buffer",
		"array",
		"object",
		"number",
		"writable",
		"promise",
		"async",
		"javascript",
		"typescript"
	],
	"dependencies": {
		"delay": "^4.4.0",
		"is-any-type": "0.0.3",
		"memorystream": "^0.3.1",
		"readable-stream": "^3.6.0"
	},
	"devDependencies": {
		"@types/axios": "^0.14.0",
		"@types/delay": "^3.1.0",
		"@types/jest": "^26.0.20",
		"@types/memorystream": "^0.3.0",
		"@types/node": "^14.14.22",
		"@types/readable-stream": "^2.3.9",
		"@typescript-eslint/eslint-plugin": "^4.12.0",
		"@typescript-eslint/parser": "^4.12.0",
		"axios": "^0.21.1",
		"coveralls": "^3.1.0",
		"eslint": "^7.17.0",
		"eslint-config-prettier": "^7.1.0",
		"eslint-config-standard": "^16.0.2",
		"eslint-plugin-import": "^2.22.1",
		"eslint-plugin-jest": "^24.1.3",
		"eslint-plugin-node": "^11.1.0",
		"eslint-plugin-prettier": "^3.3.1",
		"eslint-plugin-promise": "^4.2.1",
		"husky": "^4.3.7",
		"jest": "^26.6.3",
		"prettier": "^2.2.1",
		"rimraf": "^3.0.2",
		"ts-jest": "^26.4.4",
		"ts-node": "^9.1.1",
		"typescript": "^4.1.3"
	},
	"husky": {
		"hooks": {
			"pre-commit": "npm run lint:fix"
		}
	}
}
