This repository was archived by the owner on Mar 30, 2019. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.34 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "level-browserify",
"version": "2.0.0",
"description": "Fast & simple storage - a Node.js-style LevelDB wrapper (a convenience package bundling LevelUP & LevelDOWN or Level.js)",
"license": "MIT",
"main": "level.js",
"scripts": {
"test": "standard && hallmark && nyc node test-node.js",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"test-browser-local": "standard && airtap --local test-browser.js",
"hallmark": "hallmark --fix",
"dependency-check": "dependency-check -i levelup -i encoding-down . browser.js test*.js",
"prepublishOnly": "npm run dependency-check"
},
"browser": "browser.js",
"dependencies": {
"level-js": "^3.0.0",
"level-packager": "^4.0.0",
"leveldown": "^4.0.0"
},
"devDependencies": {
"airtap": "^2.0.0",
"coveralls": "^3.0.2",
"dependency-check": "^3.3.0",
"hallmark": "^0.1.0",
"level-community": "^3.0.0",
"nyc": "^12.0.2",
"standard": "^12.0.0",
"tape": "^4.9.0"
},
"hallmark": {
"community": "level-community"
},
"repository": {
"type": "git",
"url": "https://github.com/Level/level-browserify.git"
},
"homepage": "https://github.com/Level/level-browserify",
"keywords": [
"level",
"leveldb",
"stream",
"database",
"db",
"store",
"storage",
"json",
"indexeddb"
]
}