-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.91 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
{
"name": "ssb-meta-feeds",
"description": "Manage meta feeds and its sub feeds, as a secret-stack plugin",
"version": "0.39.0",
"homepage": "https://github.com/ssb-ngi-pointer/ssb-meta-feeds",
"repository": {
"type": "git",
"url": "git://github.com/ssb-ngi-pointer/ssb-meta-feeds.git"
},
"files": [
"*.js",
"package.json.license",
"LICENSES/*"
],
"dependencies": {
"bencode": "^2.0.2",
"bipf": "^1.9.0",
"debug": "^4.3.0",
"fast-deep-equal": "^3.1.3",
"futoin-hkdf": "^1.4.2",
"is-canonical-base64": "^1.1.1",
"mutexify": "^1.4.0",
"p-defer": "^3.0.0",
"print-tree": "^0.1.5",
"promisify-tuple": "^1.2.0",
"pull-cat": "^1.1.11",
"pull-defer": "^0.2.3",
"pull-notify": "^0.1.1",
"pull-stream": "^3.6.14",
"ssb-bfe": "^3.6.1",
"ssb-db2": ">=3.0.0 <=6",
"ssb-keys": "^8.5.0",
"ssb-ref": "^2.16.0",
"ssb-uri2": "^2.4.1"
},
"devDependencies": {
"c8": "^7.11.0",
"husky": "^4.3.0",
"prettier": "^2.1.2",
"pretty-quick": "^3.1.0",
"rimraf": "^3.0.2",
"secret-stack": "^6.4.0",
"ssb-bendy-butt": "^1.0.1",
"ssb-box2": "^3.0.0",
"ssb-caps": "^1.1.0",
"ssb-classic": "^1.1.0",
"ssb-db2": "^6.3.0",
"tap-arc": "^0.3.5",
"tape": "^5.6.1"
},
"scripts": {
"test": "npm run test:js && npm run test:only",
"test:js": "tape \"test/**/*.test.js\" | tap-arc --bail",
"test:only": "if grep -r --exclude-dir=node_modules --exclude-dir=coverage --exclude-dir=.git --color 'test\\.only' .; then exit 1; fi",
"format-code": "prettier --write \"*.js\" \"test/**/*.js\"",
"format-code-staged": "pretty-quick --staged --pattern \"*.js\" --pattern \"test/*.js\"",
"coverage": "c8 --reporter=lcov npm run test"
},
"husky": {
"hooks": {
"pre-commit": "npm run format-code-staged"
}
},
"author": "Anders Rune Jensen <[email protected]>",
"license": "LGPL-3.0"
}