61 lines
1.3 KiB
JSON
61 lines
1.3 KiB
JSON
|
|
{
|
||
|
|
"name": "level",
|
||
|
|
"version": "8.0.0",
|
||
|
|
"description": "Universal abstract-level database for Node.js and browsers",
|
||
|
|
"license": "MIT",
|
||
|
|
"main": "index.js",
|
||
|
|
"types": "./index.d.ts",
|
||
|
|
"scripts": {
|
||
|
|
"test": "standard && ts-standard *.ts && nyc node test.js",
|
||
|
|
"test-browsers-local": "airtap --coverage test.js && nyc report",
|
||
|
|
"coverage": "nyc report -r lcovonly"
|
||
|
|
},
|
||
|
|
"files": [
|
||
|
|
"browser.js",
|
||
|
|
"index.js",
|
||
|
|
"index.d.ts",
|
||
|
|
"CHANGELOG.md",
|
||
|
|
"UPGRADING.md"
|
||
|
|
],
|
||
|
|
"browser": "browser.js",
|
||
|
|
"dependencies": {
|
||
|
|
"browser-level": "^1.0.1",
|
||
|
|
"classic-level": "^1.2.0"
|
||
|
|
},
|
||
|
|
"devDependencies": {
|
||
|
|
"@types/node": "^17.0.23",
|
||
|
|
"@voxpelli/tsconfig": "^3.1.0",
|
||
|
|
"airtap": "^4.0.1",
|
||
|
|
"airtap-playwright": "^1.0.1",
|
||
|
|
"hallmark": "^4.0.0",
|
||
|
|
"nyc": "^15.0.0",
|
||
|
|
"standard": "^16.0.3",
|
||
|
|
"tape": "^5.0.1",
|
||
|
|
"ts-standard": "^11.0.0",
|
||
|
|
"typescript": "^4.5.5",
|
||
|
|
"uuid": "^8.3.2"
|
||
|
|
},
|
||
|
|
"funding": {
|
||
|
|
"type": "opencollective",
|
||
|
|
"url": "https://opencollective.com/level"
|
||
|
|
},
|
||
|
|
"repository": {
|
||
|
|
"type": "git",
|
||
|
|
"url": "https://github.com/Level/level.git"
|
||
|
|
},
|
||
|
|
"homepage": "https://github.com/Level/level",
|
||
|
|
"keywords": [
|
||
|
|
"level",
|
||
|
|
"leveldb",
|
||
|
|
"stream",
|
||
|
|
"database",
|
||
|
|
"db",
|
||
|
|
"store",
|
||
|
|
"storage",
|
||
|
|
"json"
|
||
|
|
],
|
||
|
|
"engines": {
|
||
|
|
"node": ">=12"
|
||
|
|
}
|
||
|
|
}
|