-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.32 KB
/
package.json
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
51
{
"name": "lmdb-leveldown",
"version": "0.0.3",
"description": "leveldown compatible binding to LMDB",
"main": "build/index.js",
"author": "Chris Bala",
"license": "MIT",
"keywords": [
"lmdb",
"database",
"mdb",
"lightning",
"binding",
"database",
"db",
"store",
"storage"
],
"repository": {
"type": "git",
"url": "https://github.com/chrbala/lmdb-leveldown.git"
},
"homepage": "https://github.com/chrbala/lmdb-leveldown",
"scripts": {
"build": "rollup -c",
"test": "babel-tape-runner src/**/*-test.js",
"typecheck": "flow",
"lint": "eslint src",
"prettify": "prettier-eslint --write '{,!(node_modules|build|flow-typed)/**/}*.js'",
"validate": "npm run lint && npm run typecheck && npm run test",
"prepublishOnly": "npm run validate && npm run build"
},
"dependencies": {
"abstract-leveldown": "^4.0.2",
"mkdirp": "^0.5.1",
"node-lmdb": "^0.4.13"
},
"devDependencies": {
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-2": "^6.24.1",
"babel-tape-runner": "^2.0.1",
"chrbala-linter": "^2.2.1",
"chrbala-rollup": "0.0.2",
"eslint": "^4.18.0",
"flow-bin": "^0.66.0",
"prettier-eslint-cli": "^4.7.1",
"rollup": "^0.50.0",
"tape": "^4.5.1"
}
}