You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
136 lines
3.1 KiB
136 lines
3.1 KiB
2 years ago
|
{
|
||
|
"name": "bufferstreams",
|
||
|
"version": "3.0.0",
|
||
|
"description": "Abstract streams to deal with the whole buffered contents.",
|
||
|
"homepage": "https://github.com/nfroidure/BufferStreams",
|
||
|
"main": "src/index.js",
|
||
|
"files": [
|
||
|
"src/**/*.js",
|
||
|
"LICENSE",
|
||
|
"README.md",
|
||
|
"CHANGELOG.md"
|
||
|
],
|
||
|
"metapak": {
|
||
|
"configs": [
|
||
|
"main",
|
||
|
"readme",
|
||
|
"eslint",
|
||
|
"mocha",
|
||
|
"codeclimate",
|
||
|
"travis"
|
||
|
],
|
||
|
"data": {
|
||
|
"files": "src/*.js tests/*.mocha.js",
|
||
|
"testsFiles": "tests/*.mocha.js"
|
||
|
}
|
||
|
},
|
||
|
"scripts": {
|
||
|
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
|
||
|
"cli": "env NODE_ENV=${NODE_ENV:-cli}",
|
||
|
"cover": "nyc npm test && nyc report --reporter=html --reporter=text",
|
||
|
"coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls && rm -rf ./coverage",
|
||
|
"cz": "env NODE_ENV=${NODE_ENV:-cli} git cz",
|
||
|
"lint": "eslint src/*.js tests/*.mocha.js",
|
||
|
"metapak": "metapak",
|
||
|
"mocha": "mocha tests/*.mocha.js",
|
||
|
"precz": "npm t && npm run lint && npm run metapak -- -s",
|
||
|
"prettier": "prettier --write src/*.js tests/*.mocha.js",
|
||
|
"preversion": "npm t && npm run lint && npm run metapak -s && npm run metapak -- -s",
|
||
|
"test": "npm run mocha",
|
||
|
"version": "npm run changelog"
|
||
|
},
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "git://github.com/nfroidure/BufferStreams"
|
||
|
},
|
||
|
"keywords": [
|
||
|
"buffer",
|
||
|
"streaming",
|
||
|
"stream",
|
||
|
"async",
|
||
|
"abstract"
|
||
|
],
|
||
|
"dependencies": {
|
||
|
"readable-stream": "^3.4.0"
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"commitizen": "^3.1.1",
|
||
|
"conventional-changelog-cli": "^2.0.23",
|
||
|
"coveralls": "^3.0.5",
|
||
|
"cz-conventional-changelog": "^3.0.2",
|
||
|
"eslint": "^6.1.0",
|
||
|
"eslint-plugin-prettier": "^3.1.0",
|
||
|
"metapak": "^3.1.6",
|
||
|
"metapak-nfroidure": "^9.6.4",
|
||
|
"mocha": "^6.2.0",
|
||
|
"nyc": "^14.1.1",
|
||
|
"prettier": "^1.18.2",
|
||
|
"streamtest": "^1.2.4"
|
||
|
},
|
||
|
"author": {
|
||
|
"name": "Nicolas Froidure",
|
||
|
"email": "nicolas.froidure@insertafter.com",
|
||
|
"url": "http://insertafter.com/en/index.html"
|
||
|
},
|
||
|
"engines": {
|
||
|
"node": ">=8.12.0"
|
||
|
},
|
||
|
"license": "MIT",
|
||
|
"bugs": {
|
||
|
"url": "https://github.com/nfroidure/BufferStreams/issues"
|
||
|
},
|
||
|
"config": {
|
||
|
"commitizen": {
|
||
|
"path": "./node_modules/cz-conventional-changelog"
|
||
|
}
|
||
|
},
|
||
|
"greenkeeper": {
|
||
|
"ignore": [
|
||
|
"commitizen",
|
||
|
"cz-conventional-changelog",
|
||
|
"conventional-changelog-cli",
|
||
|
"eslint",
|
||
|
"eslint-config-prettier",
|
||
|
"prettier",
|
||
|
"mocha",
|
||
|
"coveralls",
|
||
|
"nyc"
|
||
|
]
|
||
|
},
|
||
|
"eslintConfig": {
|
||
|
"extends": [
|
||
|
"eslint:recommended"
|
||
|
],
|
||
|
"parserOptions": {
|
||
|
"ecmaVersion": 2018,
|
||
|
"sourceType": "script",
|
||
|
"modules": true
|
||
|
},
|
||
|
"env": {
|
||
|
"es6": true,
|
||
|
"node": true,
|
||
|
"jest": true,
|
||
|
"mocha": true
|
||
|
},
|
||
|
"plugins": [
|
||
|
"prettier"
|
||
|
],
|
||
|
"rules": {
|
||
|
"prettier/prettier": "error"
|
||
|
}
|
||
|
},
|
||
|
"prettier": {
|
||
|
"semi": true,
|
||
|
"printWidth": 80,
|
||
|
"singleQuote": true,
|
||
|
"trailingComma": "es5",
|
||
|
"proseWrap": "always"
|
||
|
},
|
||
|
"nyc": {
|
||
|
"exclude": [
|
||
|
"tests/*.mocha.js"
|
||
|
]
|
||
|
},
|
||
|
"contributors": []
|
||
|
}
|