-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 951 Bytes
/
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
{
"name": "realm-down",
"version": "1.0.0",
"description": "LevelDB-compatible data store for Realm.",
"main": "index.js",
"scripts": {
"test": "tape tests/index.js",
"posttest": "npm run lint",
"lint": "standard"
},
"keywords": [
"realm",
"leveldb",
"leveldown",
"level"
],
"homepage": "http://geutstudio.com",
"author": {
"name": "GEUT",
"email": "[email protected]"
},
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/geut/realm-down.git"
},
"bugs": {
"url": "https://github.com/geut/realm-down/issues"
},
"devDependencies": {
"hypercore": "^6.24.0",
"levelup": "^4.0.0",
"random-access-key-value": "git+https://github.com/tinchoz49/random-access-key-value.git",
"standard": "^12.0.1",
"tape": "^4.9.2",
"tmp": "0.0.33"
},
"dependencies": {
"abstract-leveldown": "^6.0.1",
"realm": "^2.22.0"
}
}