mirror of
https://github.com/Instadapp/Swap-Aggregator-Subgraph.git
synced 2024-07-29 21:57:12 +00:00
75 lines
2.0 KiB
JSON
75 lines
2.0 KiB
JSON
{
|
|
"name": "pull-to-stream",
|
|
"version": "0.1.1",
|
|
"description": "pull-stream to stream module ",
|
|
"repository": "hugomrdias/pull-to-stream",
|
|
"author": "Hugo Dias <hugomrdias@gmail.com> (hugodias.me)",
|
|
"license": "MIT",
|
|
"main": "index.js",
|
|
"engines": {
|
|
"node": ">=10"
|
|
},
|
|
"scripts": {
|
|
"test": "nyc ava",
|
|
"lint": "eslint --cache *.js src/*.js",
|
|
"validate": "run-p lint test",
|
|
"precommit": "yarn validate",
|
|
"version": "yarn changelog && git add changelog.md",
|
|
"changelog": "conventional-changelog -p angular -i changelog.md -s -r 0",
|
|
"cov": "yarn test && nyc report --reporter=html && hs coverage -s -o -c-1",
|
|
"cov:report": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
|
|
},
|
|
"files": [
|
|
"index.js"
|
|
],
|
|
"keywords": [
|
|
""
|
|
],
|
|
"dependencies": {
|
|
"readable-stream": "^3.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/cli": "^7.2.1",
|
|
"@commitlint/config-conventional": "^7.1.2",
|
|
"ava": "^1.2.1",
|
|
"codecov": "^3.2.0",
|
|
"conventional-changelog-cli": "^2.0.12",
|
|
"eslint": "^4.7.0",
|
|
"eslint-config-halo": "^2.3.3",
|
|
"http-serve": "^1.0.1",
|
|
"husky": "^1.1.2",
|
|
"lint-staged": "^8.0.3",
|
|
"np": "^4.0.2",
|
|
"npm-run-all": "^4.1.1",
|
|
"nyc": "^13.3.0",
|
|
"pull-stream": "^3.6.9"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged",
|
|
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"*.js": [
|
|
"eslint --fix",
|
|
"git add"
|
|
]
|
|
},
|
|
"commitlint": {
|
|
"extends": [
|
|
"@commitlint/config-conventional"
|
|
]
|
|
},
|
|
"eslintConfig": {
|
|
"extends": "halo/node"
|
|
},
|
|
"eslintIgnore": [
|
|
"node_modules",
|
|
"coverage",
|
|
"dist",
|
|
"storybook-static",
|
|
"typings"
|
|
]
|
|
}
|