-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 879 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 879 Bytes
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
{
"name": "@muze-nl/od-jsontag",
"version": "0.4.5",
"description": "On Demand JSONTag: parse/serialize large datastructures on demand, useful for sharing data between threads",
"type": "module",
"author": "Auke van Slooten <auke@muze.nl>",
"keywords": [
"JSONTag",
"On Demand Parsing"
],
"homepage": "https://github.com/muze-nl/od-jsontag",
"bugs": {
"url": "https://github.com/muze-nl/od-jsontag/issues"
},
"license": "MIT",
"main": "./src/parse.mjs",
"scripts": {
"test": "tap test/*.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/muze-nl/od-jsontag.git"
},
"engines": {
"node": ">=20.0.0"
},
"devDependencies": {
"@eslint/js": "^9.36.0",
"eslint": "^9.36.0",
"globals": "^16.4.0",
"tap": "~21.1.0"
},
"files": [
"src/",
"README.md",
"LICENSE"
],
"dependencies": {
"@muze-nl/jsontag": "^0.10.4"
}
}