Swap-Aggregator-Subgraph/node_modules/iso-random-stream/package.json
2022-07-03 07:27:35 +05:30

66 lines
1.8 KiB
JSON

{
"name": "iso-random-stream",
"version": "1.1.2",
"description": "Random bytes stream for node and browser",
"repository": "hugomrdias/iso-random-stream",
"author": "Hugo Dias <hugomrdias@gmail.com> (hugodias.me)",
"license": "MIT",
"main": "src/index.js",
"engines": {
"node": ">=8"
},
"browser": {
"./src/random.js": "./src/random.browser.js"
},
"scripts": {
"test": "nyc tape test.js | faucet",
"test:browser-local": "airtap --local test.js",
"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": [
"src"
],
"keywords": [
"stream",
"random",
"bytes",
"isomorphic",
"node",
"browser"
],
"dependencies": {
"buffer": "^6.0.3",
"readable-stream": "^3.4.0"
},
"devDependencies": {
"airtap": "^2.0.2",
"codecov": "^3.1.0",
"conventional-changelog-cli": "^2.0.5",
"eslint": "^4.7.1",
"eslint-config-halo": "^2.3.3",
"faucet": "^0.0.1",
"http-serve": "^1.0.1",
"husky": "^4.2.5",
"np": "^6.2.2",
"npm-run-all": "^4.1.1",
"nyc": "^15.0.1",
"tape": "^4.9.1"
},
"eslintConfig": {
"extends": "halo/node"
},
"eslintIgnore": [
"node_modules",
"coverage",
"dist",
"storybook-static",
"typings"
]
}