node-hilo
Version:
NHibernate-style hi/lo ID generator for node.js & SQL Server
85 lines (84 loc) • 1.86 kB
JSON
{
"name": "node-hilo",
"version": "6.1.0",
"homepage": "https://github.com/LeanKit-Labs/node-hilo",
"description": "NHibernate-style hi/lo ID generator for node.js & SQL Server",
"author": "Jim Cowart",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "git://github.com/LeanKit-Labs/node-hilo.git"
},
"contributors": [
{
"name": "Jim Cowart",
"email": "jim@ifandelse.com",
"url": "http://ifandelse.com"
},
{
"name": "Matt Dunlap",
"email": "matt.dunlap@leankit.com",
"url": "https://github.com/prestaul"
}
],
"main": "./src/index.js",
"keywords": [
"hilo",
"hi-lo",
"hi/lo",
"NHibernate"
],
"scripts": {
"lint": "eslint --fix ./",
"pretest": "npm run lint",
"test": "npm run cover",
"test:only": "NODE_ENV=test mocha --exit -r spec/setup -R spec 'spec/**/*.spec.js'",
"test:watch": "nodemon --exec \"NODE_ENV=test mocha --exit -r spec/setup -R progress 'spec/**/*.spec.js' || true\" -e js,json,sql",
"cover": "c8 -r text-summary -r html -- npm run test:only",
"cover:show": "open \"file://$PWD/coverage/index.html\""
},
"dependencies": {
"big-integer": "^1.6.52",
"machina": "^4.0.2",
"tedious": "^19.2.0"
},
"devDependencies": {
"c8": "^10.1.3",
"chai": "^4.4.1",
"chai-as-promised": "^7.1.1",
"dirty-chai": "^2.0.1",
"eslint-config-leankit": "^7.0.0",
"execa": "^8.0.1",
"mocha": "^11.1.0",
"nodemon": "^3.1.9",
"proxyquire": "^2.1.3",
"sinon": "^19.0.2",
"sinon-chai": "^3.7.0"
},
"engines": {
"node": ">=20.0.0"
},
"licenses": [
{
"type": "MIT",
"url": "http://opensource.org/licenses/MIT"
}
],
"files": [
"src",
"LICENSE"
],
"c8": {
"exclude": [
"coverage",
"spec",
".eslintrc.js",
"index.d.ts"
],
"sourceMap": false,
"instrument": true,
"all": true
}
}