- Add GETTING_STARTED.md with quick start guide and development modes - Add INSTALL.sh automated installation script - Add INSTALLATION_CHECKLIST.md, INSTALLATION_SUCCESS.md, and INSTALLATION_SUMMARY.md - Add QUICK_REFERENCE.md for common commands - Add SETUP_GUIDE.md with detailed setup instructions - Update README.md with improved project overview - Add did-wallet app dependencies and node_modules
57 lines
1.4 KiB
JSON
57 lines
1.4 KiB
JSON
{
|
|
"name": "browser-level",
|
|
"version": "1.0.1",
|
|
"description": "An abstract-level database for browsers, backed by IndexedDB",
|
|
"author": "max ogden",
|
|
"license": "MIT",
|
|
"main": "index.js",
|
|
"types": "./index.d.ts",
|
|
"scripts": {
|
|
"test": "standard && ts-standard *.ts && hallmark && airtap -p local --coverage test/index.js && nyc report",
|
|
"test-browsers": "standard && airtap --coverage test/index.js",
|
|
"coverage": "nyc report -r lcovonly",
|
|
"dependency-check": "dependency-check --no-dev .",
|
|
"prepublishOnly": "npm run dependency-check"
|
|
},
|
|
"files": [
|
|
"index.js",
|
|
"index.d.ts",
|
|
"iterator.js",
|
|
"util",
|
|
"CHANGELOG.md",
|
|
"UPGRADING.md",
|
|
"sauce-labs.svg"
|
|
],
|
|
"dependencies": {
|
|
"abstract-level": "^1.0.2",
|
|
"catering": "^2.1.1",
|
|
"module-error": "^1.0.2",
|
|
"run-parallel-limit": "^1.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@voxpelli/tsconfig": "^3.1.0",
|
|
"airtap": "^4.0.4",
|
|
"airtap-playwright": "^1.0.1",
|
|
"airtap-sauce": "^1.1.0",
|
|
"dependency-check": "^4.1.0",
|
|
"hallmark": "^4.1.0",
|
|
"nyc": "^15.0.0",
|
|
"standard": "^16.0.4",
|
|
"tape": "^5.5.2",
|
|
"ts-standard": "^11.0.0",
|
|
"typescript": "^4.5.5",
|
|
"uuid": "^3.3.2"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Level/browser-level.git"
|
|
},
|
|
"homepage": "https://github.com/Level/browser-level",
|
|
"keywords": [
|
|
"level",
|
|
"leveldb",
|
|
"indexeddb",
|
|
"abstract-level"
|
|
]
|
|
}
|