-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.07 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.07 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
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
{
"name": "haro",
"version": "17.0.2",
"description": "A fast, flexible immutable DataStore for collections of records with indexing, versioning, and advanced querying capabilities",
"type": "module",
"types": "types/haro.d.ts",
"source": "src/haro.js",
"main": "dist/haro.cjs",
"exports": {
"types": "./types/haro.d.ts",
"import": "./dist/haro.js",
"require": "./dist/haro.cjs"
},
"files": [
"dist/haro.cjs",
"dist/haro.js",
"types/haro.d.ts"
],
"scripts": {
"benchmark": "node benchmarks/index.js",
"build": "npm run lint && npm run rollup",
"changelog": "auto-changelog -p",
"fix": "oxlint --fix *.js benchmarks src tests/unit && oxfmt *.js benchmarks/*.js src/*.js tests/unit/*.js --write",
"lint": "oxlint *.js benchmarks src tests/unit && oxfmt *.js benchmarks/*.js src/*.js tests/unit/*.js --check",
"coverage": "node --test --experimental-test-coverage --test-coverage-exclude=dist/** --test-coverage-exclude=tests/** --test-reporter=spec tests/**/*.test.js 2>&1 | grep -A 1000 \"start of coverage report\" > coverage.txt",
"rollup": "rollup --config",
"test": "npm run lint && node --test tests/**/*.js",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "https://github.com/avoidwork/haro.git"
},
"keywords": [
"immutable",
"data",
"store",
"datastore",
"collection",
"index",
"indexing",
"query",
"search",
"filter",
"versioning",
"batch",
"bulk",
"memory",
"cache",
"map",
"haro"
],
"author": "Jason Mulligan <jason.mulligan@avoidwork.com>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/avoidwork/haro/issues"
},
"homepage": "https://github.com/avoidwork/haro",
"engineStrict": true,
"engines": {
"node": ">=19.0.0"
},
"dependencies": {
"tiny-lru": "^13.0.0"
},
"devDependencies": {
"auto-changelog": "^2.5.0",
"globals": "^17.5.0",
"husky": "^9.1.7",
"oxfmt": "^0.46.0",
"oxlint": "^1.60.0",
"rollup": "^4.60.2",
"tinybench": "^6.0.0"
}
}