-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.03 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.03 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
{
"name": "@muze-nl/jaqt",
"version": "0.10.6",
"description": "Javascript Queries and Transformations, allows GraphQL-like functionality on Javascript arrays of objects.",
"type": "module",
"author": "Auke van Slooten <auke@muze.nl>",
"keywords": [
"from",
"query",
"select",
"where",
"tranformation"
],
"homepage": "https://github.com/muze-nl/jaqt",
"bugs": {
"url": "https://github.com/muze-nl/jaqt/issues"
},
"license": "MIT",
"main": "./src/jaqt.mjs",
"scripts": {
"test": "tap test/test.*.mjs",
"repl": "NODE_REPL_HISTORY=repl/history.repl node repl/repl.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/muze-nl/jaqt.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"
]
}