This repository has been archived by the owner on May 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.8 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
{
"name": "ssb-replication-scheduler",
"description": "A secret-stack plugin to orchestrate replication using EBT",
"version": "2.0.3",
"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": ">=10"
},
"dependencies": {
"debug": "^4.3.2",
"pull-pushable": "^2.2.0",
"pull-stream": "^3.6.0",
"ssb-db2": ">=3.0.0 <=4",
"ssb-ebt": "^8.0.0",
"ssb-meta-feeds": "~0.28.0",
"ssb-network-errors": "^1.0.1",
"ssb-subset-ql": "~0.6.2"
},
"devDependencies": {
"cat-names": "^3.0.0",
"dog-names": "^2.0.0",
"husky": "^4.3.0",
"mkdirp": "^1.0.4",
"nyc": "^15.1.0",
"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.5.2",
"secret-stack": "^6.4.0",
"ssb-caps": "^1.1.0",
"ssb-db": "^20.4.0",
"ssb-fixtures": "^3.0.4",
"ssb-friends": "^5.1.0",
"ssb-index-feed-writer": "~0.7.0",
"ssb-keys": "^8.2.0",
"ssb-subset-rpc": "~0.3.1",
"tap-spec": "^5.0.0",
"tape": "^5.5.2"
},
"scripts": {
"test": "tape 'test/@(unit|integration)/*.js' | tap-spec",
"coverage": "nyc --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"
}
}
}