-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.21 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.21 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
{
"name": "picorepo",
"version": "2.2.5",
"description": "Persistent efficient binary block storage for picofeeds",
"files": [
"index.js",
"index.d.ts",
"dot.js"
],
"type": "module",
"main": "index.js",
"scripts": {
"lint": "standard",
"test": "brittle test.js",
"cov": "c8 --check-coverage --lines=100 node test.js",
"debug": "node inspect $(npm bin)/brittle test.js",
"types": "(rm -rf *.ts || true) && tsc --emitDeclarationOnly --allowJs --skipLibCheck --checkJs --declaration --removeComments --lib es2022 --target es2022 --moduleResolution nodenext --module nodenext index.js",
"prepublishOnly": "standard && npm test && npm run types"
},
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "git://github.com/telamon/picorepo"
},
"author": "Tony Ivanov",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/telamon/picorepo/issues"
},
"homepage": "https://github.com/telamon/picorepo",
"peerDependencies": {
"picofeed": "^8.0.5"
},
"devDependencies": {
"abstract-level": "^2.0.0",
"brittle": "^3.3.2",
"c8": "^10.1.2",
"memory-level": "^1.0.0",
"picofeed": "^8.0.5",
"standard": "^17.1.0"
}
}