-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.02 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "multi-core-indexer",
"version": "1.0.0",
"description": "Index one or more hypercores",
"main": "index.js",
"types": "types/index.d.ts",
"scripts": {
"test": "run-p lint type borp",
"lint": "eslint .",
"borp": "c8 borp",
"type": "tsc",
"prepare": "husky install",
"prepack": "tsc",
"posttest": "c8 report --reporter=text-lcov > ./coverage/lcov.info"
},
"keywords": [],
"author": "Digital Democracy",
"license": "MIT",
"dependencies": {
"@types/node": "^18.16.19",
"@types/streamx": "^2.9.1",
"b4a": "^1.6.4",
"big-sparse-array": "^1.0.2",
"random-access-file": "^4.0.4",
"streamx": "^2.15.0",
"tiny-typed-emitter": "^2.1.0"
},
"devDependencies": {
"@digidem/types": "^1.0.1",
"@types/nanobench": "^3.0.0",
"@types/sodium-native": "^2.3.5",
"borp": "^0.9.1",
"c8": "^9.1.0",
"eslint": "^8.44.0",
"husky": "^8.0.3",
"hypercore": "^10.17.0",
"lint-staged": "^13.2.3",
"multifeed": "^6.0.0",
"multifeed-index": "^3.4.2",
"nanobench": "^3.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.1",
"pretty-quick": "^3.1.3",
"random-access-memory": "^6.2.0",
"sodium-native": "^4.0.4",
"tempy": "^3.0.0",
"typescript": "^5.1.6"
},
"eslintConfig": {
"env": {
"commonjs": true,
"es2021": true,
"node": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": "latest"
},
"rules": {}
},
"prettier": {
"semi": false,
"singleQuote": true
},
"lint-staged": {
"*.js": [
"eslint --cache --fix"
],
"*.{json,js,ts,css,md}": "prettier --write"
},
"directories": {
"lib": "lib",
"test": "test"
},
"files": [
"types",
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/digidem/multi-core-indexer.git"
},
"bugs": {
"url": "https://github.com/digidem/multi-core-indexer/issues"
},
"homepage": "https://github.com/digidem/multi-core-indexer#readme"
}