file-lines-count
Version:
Count number of lines in a file in a fast asynchronous fashion.
52 lines (51 loc) • 1.16 kB
JSON
{
"name": "file-lines-count",
"version": "1.0.1",
"description": "Count number of lines in a file in a fast asynchronous fashion.",
"main": "src/index.js",
"scripts": {
"test": "mocha 'src/**/*.js'",
"coverage": "nyc npm run test",
"coverage:report": "cat ./coverage/lcov.info | codecov",
"validate": "npm run coverage"
},
"keywords": [
"line",
"count",
"file",
"count lines",
"wc",
"async"
],
"author": "Alex Bakoushin <alex@bakoush.in>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bakoushin/file-lines-count.git"
},
"bugs": {
"url": "https://github.com/bakoushin/file-lines-count/issues"
},
"homepage": "https://github.com/bakoushin/file-lines-count#readme",
"devDependencies": {
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"codecov": "3.7.0",
"ghooks": "2.0.4",
"mocha": "7.2.0",
"nyc": "15.0.1"
},
"config": {
"ghooks": {
"pre-commit": "npm run validate"
}
},
"types": "src/index.d.ts",
"files": [
"src/index.js",
"src/index.d.ts"
],
"engines": {
"node": ">= 12.0.0"
}
}