UNPKG

write-npmstat

Version:

write-npmstat makes it easy to collect, filter and save npm statistics to csv files.

57 lines (56 loc) 1.72 kB
{ "name": "write-npmstat", "version": "0.2.1", "description": "write-npmstat makes it easy to collect, filter and save npm statistics to csv files.", "main": "dist/index.min.js", "files": [], "scripts": { "test": "echo \"Error: no test specified\" && exit 1", "prettier": "prettier -w ./*js ./src/*js", "eslint": "eslint --fix ./*js ./src/*js", "check-prettier": "prettier -c ./*js ./src/*js", "check-eslint": "eslint ./*js ./src/*js", "check": "npm-run-all check-prettier check-eslint", "docs": "npx jsdoc -d docs -r README.md ./src/*js", "rollup": "rollup -c", "pack": "mkdir -p build && npm pack --pack-destination build && tar -ztvf build/*.tgz", "build": "npm-run-all rollup pack" }, "repository": { "type": "git", "url": "https://github.com/veghdev/write-npmstat.git" }, "keywords": [ "js", "csv", "npmstats" ], "author": "", "license": "Apache-2.0", "bugs": { "url": "https://github.com/veghdev/write-npmstat/issues" }, "homepage": "https://github.com/veghdev/write-npmstat#readme", "dependencies": { "npm-stat-api": "^1.0.0", "enum": "^3.0.0", "csv-writer": "^1.6.0", "csv-parser": "^3.0.0", "node-fetch": "<3.0.0" }, "devDependencies": { "npm-run-all": "^4.1.5", "prettier": "^2.6.2", "eslint": "^8.14.0", "eslint-config-standard": "^17.0.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-import": "^2.26.0", "eslint-plugin-n": "^15.2.0", "eslint-plugin-promise": "^6.0.0", "rollup": "^2.70.2", "@rollup/plugin-commonjs": "^22.0.0", "rollup-plugin-auto-external": "^2.0.0", "rollup-plugin-terser": "^7.0.2", "jsdoc": "^3.6.10" } }