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
56 lines (56 loc) · 1.5 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
{
"name": "ssb-index-feed-writer",
"description": "Keep an index sub-feed up-to-date with the content feed",
"version": "0.7.0",
"homepage": "https://github.com/ssb-ngi-pointer/ssb-index-feed-writer",
"repository": {
"type": "git",
"url": "git://github.com/ssb-ngi-pointer/ssb-index-feed-writer.git"
},
"files": [
"*.js",
"package.json.license",
"LICENSES/*"
],
"dependencies": {
"debug": "^4.3.2",
"promisify-4loc": "^1.0.0",
"pull-cat": "^1.1.11",
"pull-stream": "^3.6.14",
"ssb-db2": "^2.5.1",
"ssb-subset-ql": "~0.6.1"
},
"peerDependencies": {
"ssb-meta-feeds": ">=0.18.0"
},
"devDependencies": {
"husky": "^4.3.0",
"nyc": "^15.1.0",
"prettier": "^2.1.2",
"pretty-quick": "^3.1.0",
"promisify-tuple": "^1.2.0",
"pull-stream-util": "^0.1.2",
"rimraf": "^3.0.2",
"secret-stack": "^6.4.0",
"ssb-caps": "^1.1.0",
"ssb-fixtures": "^2.4.1",
"ssb-keys": "^8.2.0",
"ssb-meta-feeds": "~0.21.0",
"tap-bail": "^1.0.0",
"tap-spec": "^5.0.0",
"tape": "^5.2.2"
},
"scripts": {
"test": "tape test/*.js | tap-bail | tap-spec",
"coverage": "nyc --reporter=lcov npm test",
"format-code": "prettier --write \"*.js\" \"test/*.js\"",
"format-code-staged": "pretty-quick --staged --pattern \"*.js\" --pattern \"test/*.js\""
},
"husky": {
"hooks": {
"pre-commit": "npm run format-code-staged"
}
},
"author": "Andre 'Staltz' Medeiros <[email protected]>",
"license": "LGPL-3.0"
}