-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.28 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-feed-format",
"version": "2.2.3",
"description": "devDependency to test feed formats",
"repository": {
"type": "git",
"url": "git+https://github.com/ssbc/ssb-feed-format.git"
},
"bugs": {
"url": "https://github.com/ssbc/ssb-feed-format/issues"
},
"homepage": "https://github.com/ssbc/ssb-feed-format#readme",
"author": "Andre Staltz <[email protected]>",
"contributors": [
"Anders Rune Jensen <[email protected]>"
],
"license": "LGPL-3.0",
"keywords": [
"ssb"
],
"engines": {
"node": ">=12"
},
"main": "index.js",
"files": [
"package.json.license",
"LICENSES/*",
"*.js"
],
"dependencies": {
"fast-equals": "^4.0.1",
"multicb": "^1.2.2",
"ssb-ref": "^2.16.0"
},
"devDependencies": {
"c8": "^7.11.3",
"husky": "4.3",
"prettier": "^2.6.2",
"pretty-quick": "^3.1.3",
"ssb-keys": "^8.4.0",
"ssb-validate2": "^0.1.2",
"tap-arc": "^0.3.4",
"tape": "^5.5.3"
},
"scripts": {
"test": "tape test/*.js | tap-arc",
"format-code": "prettier --write \"*.js\"",
"format-code-staged": "pretty-quick --staged --pattern \"*.js\"",
"coverage": "c8 --reporter=lcov npm run test"
},
"husky": {
"hooks": {
"pre-commit": "npm run format-code-staged"
}
}
}