-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.12 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.12 KB
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
{
"name": "bipf",
"description": "binary in-place format",
"version": "1.9.0",
"homepage": "https://github.com/ssbc/bipf",
"repository": {
"type": "git",
"url": "git://github.com/ssbc/bipf.git"
},
"files": [
"*.js"
],
"dependencies": {
"fast-varint": "^1.0.0"
},
"devDependencies": {
"bipf-spec": "^0.1.0",
"faker": "^5.5.1",
"husky": "^4.3.8",
"nyc": "^15.1.0",
"prettier": "^2.1.2",
"pretty-quick": "^3.1.0",
"tap-arc": "~0.3.4",
"tape": "^5.3.1"
},
"scripts": {
"test": "tape test/index.js | tap-arc && tape test/compare.js | tap-arc && tape test/fixtures.js | tap-arc",
"coverage": "nyc --reporter=lcov npm test",
"format-code": "prettier --write \"*.js\" \"test/*.js\"",
"format-code-staged": "pretty-quick --staged --pattern \"*.js\" --pattern \"test/*.js\"",
"benchmark": "node test/perf.js"
},
"husky": {
"hooks": {
"pre-commit": "npm run format-code-staged"
}
},
"author": "Dominic Tarr <dominic.tarr@gmail.com> (http://dominictarr.com)",
"contributors": [
"Andre Staltz <contact@staltz.com>"
],
"license": "MIT"
}