-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 2.09 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 2.09 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
{
"name": "autovault-ld",
"version": "0.0.0",
"description": "AutoVault-LD: multi-writer Vault-LD knowledge graphs on autobee — markdown vaults as linked data",
"license": "Apache-2.0",
"author": "Charlie Robbins <npm@charlie.dev>",
"type": "module",
"private": true,
"engines": {
"node": ">=20"
},
"scripts": {
"test": "node --test \"test/*.test.js\" \"okf/test/*.test.js\" \"okf/test/regressions/*.test.js\"",
"test:okf": "node --test \"okf/test/*.test.js\" \"okf/test/regressions/*.test.js\"",
"test:regressions": "node --test \"test/regressions/*.test.js\" \"okf/test/regressions/*.test.js\"",
"test:okf:soak": "node okf/harness/soak/soak.js",
"test:harness:clean": "HARNESS_PROFILE=clean node --test --test-concurrency=1 \"vault-ld/harness/scenarios/*.test.js\"",
"test:harness:lossy": "HARNESS_PROFILE=lossy node --test --test-concurrency=1 \"vault-ld/harness/scenarios/*.test.js\"",
"test:harness:partitioned": "HARNESS_PROFILE=partitioned node --test --test-concurrency=1 \"vault-ld/harness/scenarios/*.test.js\"",
"test:harness:fuzz": "HARNESS_PROFILE=clean HARNESS_FUZZ_ITERS=10 node --test \"vault-ld/harness/scenarios/s10-fuzz.test.js\"",
"test:harness:soak": "node vault-ld/harness/soak/soak.js",
"test:okf-harness:clean": "HARNESS_PROFILE=clean node --test --test-concurrency=1 \"okf/harness/scenarios/*.test.js\"",
"test:okf-harness:lossy": "HARNESS_PROFILE=lossy node --test --test-concurrency=1 \"okf/harness/scenarios/*.test.js\"",
"test:okf-harness:partitioned": "HARNESS_PROFILE=partitioned node --test --test-concurrency=1 \"okf/harness/scenarios/*.test.js\"",
"test:okf-harness:fuzz": "HARNESS_PROFILE=clean HARNESS_FUZZ_ITERS=10 node --test \"okf/harness/scenarios/s10-fuzz.test.js\""
},
"devDependencies": {
"@auto-okf/core": "workspace:*",
"@auto-okf/faces": "workspace:*",
"@auto-okf/store": "workspace:*",
"@autovault-ld/cli": "workspace:*",
"@autovault-ld/core": "workspace:*",
"@autovault-ld/faces": "workspace:*",
"@autovault-ld/store": "workspace:*",
"n3": "^2.1.1",
"yaml": "^2.8.0"
}
}