-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 2.03 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
{
"name": "ssb-replication-scheduler",
"description": "A secret-stack plugin to orchestrate replication using EBT",
"version": "3.1.1",
"author": "Andre Staltz <[email protected]>",
"license": "LGPL-3.0",
"homepage": "https://github.com/ssb-ngi-pointer/ssb-replication-scheduler",
"repository": {
"type": "git",
"url": "git://github.com/ssb-ngi-pointer/ssb-replication-scheduler.git"
},
"main": "index.js",
"files": [
"*.js",
"package.json.license",
"LICENSES/*"
],
"engines": {
"node": ">=16"
},
"dependencies": {
"debug": "^4.3.2",
"pull-cat": "^1.1.11",
"pull-pushable": "^2.2.0",
"pull-stream": "^3.6.0",
"ssb-box2": "^7.1.0",
"ssb-db2": ">=3.0.0 <=6",
"ssb-ebt": "^9.1.2",
"ssb-meta-feeds": "^0.39.0",
"ssb-network-errors": "^1.0.1",
"ssb-subset-ql": "^1.0.1",
"ssb-tribes2": "^1.2.0"
},
"devDependencies": {
"c8": "^7.12.0",
"cat-names": "^3.0.0",
"dog-names": "^2.0.0",
"eslint": "^8.27.0",
"husky": "^4.3.0",
"mkdirp": "^1.0.4",
"prettier": "^2.4.0",
"pretty-quick": "^3.1.0",
"promisify-4loc": "^1.0.0",
"pull-paramap": "^1.2.2",
"rimraf": "^3.0.2",
"scuttle-testbot": "^1.11.0",
"secret-stack": "6.4.1",
"ssb-bendy-butt": "1.0.2",
"ssb-box": "1.0.1",
"ssb-caps": "1.1.0",
"ssb-classic": "1.1.0",
"ssb-conn": "6.0.4",
"ssb-db": "^20.4.0",
"ssb-db2": "6.3.1",
"ssb-fixtures": "3.0.4",
"ssb-friends": "5.1.7",
"ssb-index-feeds": "0.10.2",
"ssb-keys": "8.5.0",
"ssb-subset-rpc": "0.3.6",
"tap-arc": "~0.3.5",
"tape": "^5.5.2"
},
"scripts": {
"test": "tape 'test/@(unit|integration)/*.js' | tap-arc --bail",
"coverage": "c8 --reporter=lcov npm test",
"format-code": "prettier --write \"*.js\" \"test/(integration|misc|unit)/*.js\"",
"format-code-staged": "pretty-quick --staged --pattern \"*.js\" --pattern \"test/(integration|misc|unit)/*.js\""
},
"husky": {
"hooks": {
"pre-commit": "npm run format-code-staged"
}
}
}