tessradb
Version:
A local noSQL database
56 lines (55 loc) • 1.56 kB
JSON
{
"name": "tessradb",
"version": "1.7.3",
"description": "A local noSQL database",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"test": "mocha ./tests/tests.spec.js",
"btest": "npm run build && npm run test",
"bcoverage": "npm run build && npm run coverage",
"coverage": "nyc npm run test",
"coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls",
"co-publish": "npm run build && npm publish",
"build": "tsc",
"docs": "typedoc ./src/core.ts ./src/collection.ts ./src/interfaces.ts --readme .github/README.md --name TessraDB --out ./docs/ --tsconfig tsconfig.json",
"prepare": "husky install"
},
"nyc": {
"exclude": "**/*.spec.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/artegoser/TessraDB.git"
},
"keywords": [
"noSQL",
"DB",
"database",
"local",
"localdb",
"localdatabase"
],
"author": "artegoser",
"license": "MIT",
"bugs": {
"url": "https://github.com/artegoser/TessraDB/issues"
},
"homepage": "https://github.com/artegoser/TessraDB#readme",
"devDependencies": {
"@commitlint/cli": "^16.0.1",
"@commitlint/config-conventional": "^16.0.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"coveralls": "^3.1.1",
"husky": "^7.0.4",
"mocha": "^9.1.3",
"nyc": "^15.1.0",
"typedoc": "^0.22.10",
"typescript": "^4.5.4"
},
"dependencies": {
"@types/node": "^17.0.6",
"JSONStream": "^1.3.5"
}
}