uci-utils-read-lines/package.json
David Kebler d522ac6883 refactor and improve both functions
uses promise.all now
2024-12-14 18:45:07 -08:00

39 lines
No EOL
1.1 KiB
JSON
Executable file

{
"name": "@uci-utils/read-lines",
"version": "0.3.1",
"description": "Functions to read and write lines from/to a file into/from an Array (asynchronously)",
"main": "src/read-lines.js",
"type": "module",
"scripts": {
"test": "mocha --timeout 30000",
"testd": "UCI_ENV=dev ./node_modules/.bin/nodemon --exec './node_modules/.bin/mocha --timeout 30000' || exit 0",
"testdd": "UCI_LOG_LEVEL='trace' npm run testd",
"testde": "UCI_LOG_LEVEL='warn' npm run testd",
"testl": "UCI_ENV=pro UCI_LOG_PATH=./test/test.log 0 npm run test || exit 0"
},
"author": "David Kebler",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/uCOMmandIt/uci-utils.git"
},
"keywords": [
"node.js",
"utilities",
"read",
"write",
"helpers"
],
"bugs": {
"url": "https://github.com/uCOMmandIt/uci-utils/issues"
},
"homepage": "https://github.com/uCOMmandIt/uci-utils#readme",
"dependencies": {},
"devDependencies": {
"chai": "^5.1.2",
"chai-arrays": "^2.2.0",
"dirname-filename-esm": "^1.1.2",
"mocha": "^11.0.1",
"nodemon": "^3.1.9"
}
}