-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
76 lines (76 loc) · 1.73 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@skyring/scylladown",
"version": "3.0.1",
"description": "SyllaDB leveldown backend for Skyring",
"main": "index.js",
"files": [
"lib/",
"index.js",
"CHANGELOG.md",
"README.md"
],
"scripts": {
"tap": "tap",
"compose": "docker-compose -f compose/base.yml",
"pretest": "npm run compose -- -f compose/dev.yml up -d && sleep 30",
"test": "tap",
"posttest": "npm run compose -- -f compose/dev.yml down",
"start": "npm run compose -- -f compose/dev.yml down"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/esatterwhite/skyring.git",
"directory": "packages/scylladown"
},
"publishConfig": {
"access": "public"
},
"tap": {
"browser": false,
"ts": false,
"esm": false,
"jsx": false,
"timeout": 45,
"lines": 80,
"functions": 90,
"branches": 45,
"statements": 80,
"check-coverage": true,
"coverage-report": [
"json",
"html",
"text",
"text-summary"
],
"files": [
"test/*.js"
]
},
"keywords": [
"skyring",
"scylladb",
"levelup",
"leveldown"
],
"author": "Eric Satterwhite <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/esatterwhite/skyring/issues"
},
"homepage": "https://github.com/esatterwhite/skyring/tree/master/packages/scylladown#readme",
"dependencies": {
"abstract-leveldown": "^4.0.3",
"cassandra-driver": "^3.4.1",
"debug": "4.1.1",
"rm": "^0.1.8"
},
"devDependencies": {
"@codedependant/test-core": "^1.0.0",
"add": "^2.0.6",
"eslint": "^7.8.1",
"eslint-config-codedependant": "^1.0.0",
"levelup": "^2.0.2",
"skyring": "11.1.0",
"tap": "^14.10.8"
}
}