UNPKG

1.85 kBJSONView Raw
1{
2 "name": "memdown",
3 "description": "An drop-in replacement for LevelDOWN that works in memory only",
4 "version": "1.4.1",
5 "homepage": "https://github.com/Level/memdown",
6 "authors": [
7 "Rod Vagg <rod@vagg.org> (https://github.com/rvagg)"
8 ],
9 "contributors": [
10 "Julian Gruber <julian@juliangruber.com> (https://github.com/juliangruber)",
11 "Meirion Hughes <crakinshot@yahoo.com> (https://github.com/meirionhughes)"
12 ],
13 "keywords": [
14 "leveldb",
15 "leveldown",
16 "levelup",
17 "memory"
18 ],
19 "main": "memdown.js",
20 "typings": "memdown.d.ts",
21 "repository": {
22 "type": "git",
23 "url": "https://github.com/Level/memdown.git"
24 },
25 "dependencies": {
26 "abstract-leveldown": "~2.7.1",
27 "functional-red-black-tree": "^1.0.1",
28 "immediate": "^3.2.3",
29 "inherits": "~2.0.1",
30 "ltgt": "~2.2.0",
31 "safe-buffer": "~5.1.1"
32 },
33 "devDependencies": {
34 "bench": "*",
35 "faucet": "*",
36 "istanbul": "^0.4.2",
37 "istanbul-coveralls": "^1.0.3",
38 "rimraf": "*",
39 "standard": "^10.0.3",
40 "tape": "*",
41 "zuul": "github:vweevers/zuul#custom-loopback-hostname"
42 },
43 "browser": {
44 "rimraf": false,
45 "./immediate.js": "./immediate-browser.js"
46 },
47 "scripts": {
48 "test": "standard && node ./test.js --stderr | faucet",
49 "test-browsers": "zuul --browser-retries 2 --sauce-connect --concurrency 5 --loopback zuul.local --no-coverage ./test.js",
50 "test-browser-local": "zuul --ui tape --no-coverage --local 9000 ./test.js",
51 "coverage": "istanbul cover -i memdown.js ./node_modules/.bin/tape ./test.js && istanbul check-coverage --lines 90 --function 80 --statements 90 --branches 80",
52 "report-coverage": "npm run coverage && istanbul-coveralls"
53 },
54 "license": "MIT",
55 "files": [
56 "memdown.js",
57 "memdown.d.ts",
58 "immediate.js",
59 "immediate-browser.js"
60 ]
61}