uci-utils-obj-buffer/package.json

44 lines
1.1 KiB
JSON

{
"name": "@uci-utils/json-stream",
"version": "0.1.0",
"description": "seriaized json stream class for communication in a pipe",
"main": "src/json-stream.js",
"type": "module",
"scripts": {
"test": "./node_modules/.bin/mocha --timeout 30000",
"test:dev": "UCI_ENV=dev ./node_modules/.bin/nodemon --exec './node_modules/.bin/mocha --timeout 3000' || exit 0",
"test:dev:trace": "UCI_LOG_LEVEL='trace' npm run test:dev",
"test:dev:warn": "UCI_LOG_LEVEL='warn' npm run test:dev",
"test:log": "UCI_ENV=pro UCI_LOG_PATH=./test/test.log 0 npm run test || exit 0"
},
"author": "David Kebler",
"license": "MIT",
"repository": {
"type": "git",
"url": ""
},
"keywords": [
"node.js",
"stream",
"JSON",
"pipe",
"socket"
],
"bugs": {
"url": ""
},
"homepage": "",
"dependencies": {
"await-to-js": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/eslint-parser": "^7.13.14",
"@babel/preset-env": "^7.14.1",
"chai": "^4.3.4",
"eslint": "^7.26.0",
"eslint-config-standard": "^16.0.2",
"mocha": "^8.4.0",
"nodemon": "^2.0.7"
}
}