71 lines
2.0 KiB
JSON
71 lines
2.0 KiB
JSON
{
|
|
"name": "then-read-stream",
|
|
"version": "1.5.1",
|
|
"description": "Read from a readable stream just like a file",
|
|
"author": {
|
|
"name": "Borewit",
|
|
"url": "https://github.com/Borewit"
|
|
},
|
|
"scripts": {
|
|
"clean": "del-cli lib/** src/**/*.js src/**/*.js.map src/**/*.d.ts test/**/*.js test/**/*.js.map coverage .nyc_output",
|
|
"build": "npm run clean && npm run compile",
|
|
"compile-src": "tsc -p src",
|
|
"compile-test": "tsc -p test",
|
|
"compile": "npm run compile-src && yarn run compile-test",
|
|
"lint-ts": "tslint 'src/**/*.ts' --exclude 'src/**/*.d.ts' 'test/**/*.ts' --exclude 'test/**/*.d.ts'",
|
|
"lint-md": "remark -u preset-lint-recommended .",
|
|
"lint": "npm run lint-md && npm run lint-ts",
|
|
"test": "mocha --require ts-node/register --require source-map-support/register --full-trace test/*.ts",
|
|
"test-coverage": "nyc npm run test",
|
|
"send-coveralls": "nyc report --reporter=text-lcov | coveralls",
|
|
"start": "npm run compile && npm run lint && npm run cover-test"
|
|
},
|
|
"engines": {
|
|
"node": ">=8"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/Borewit/then-read-stream"
|
|
},
|
|
"license": "MIT",
|
|
"main": "./lib/index",
|
|
"typings": "lib/index",
|
|
"bugs": {
|
|
"url": "https://github.com/Borewit/then-read-stream/issues"
|
|
},
|
|
"devDependencies": {
|
|
"@types/mocha": "^5.2.7",
|
|
"@types/node": "^12.0.4",
|
|
"chai": "^4.2.0",
|
|
"coveralls": "^3.0.3",
|
|
"del-cli": "^2.0.0",
|
|
"mocha": "^6.1.4",
|
|
"nyc": "^14.1.1",
|
|
"remark-cli": "^6.0.1",
|
|
"remark-preset-lint-recommended": "^3.0.2",
|
|
"source-map-support": "^0.5.12",
|
|
"ts-node": "^8.0.2",
|
|
"tslint": "^5.17.0",
|
|
"typescript": "^3.5.1"
|
|
},
|
|
"keywords": [
|
|
"readable",
|
|
"buffer",
|
|
"stream",
|
|
"read"
|
|
],
|
|
"nyc": {
|
|
"check-coverage": true,
|
|
"extension": [
|
|
".ts"
|
|
],
|
|
"sourceMap": true,
|
|
"instrument": true,
|
|
"reporter": [
|
|
"lcov",
|
|
"text"
|
|
],
|
|
"report-dir": "coverage"
|
|
}
|
|
}
|