forked from kofrasa/mingo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.01 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
76
77
78
79
80
81
{
"name": "mingo",
"version": "6.7.0",
"description": "MongoDB query language for in-memory objects",
"main": "./cjs/index.js",
"module": "./esm/index.js",
"browser": "./dist/mingo.min.js",
"types": "./types/index.d.ts",
"scripts": {
"prepare": "husky install",
"docs": "typedoc --entryPointStrategy expand src/ && touch docs/.nojekyll",
"build": "npm run clean && node ./build.mjs",
"postbuild": "tsc --project tsconfig.build.json",
"clean": "rm -fr build",
"test": "vitest",
"release": "npm run test && npm run build && cd build && npm publish",
"prepublishOnly": "echo \"use 'npm run release'\" && false",
"postinstall": "node ./build.mjs install"
},
"repository": {
"type": "git",
"url": "https://github.com/kofrasa/mingo.git"
},
"files": [
"LICENSE",
"README.md",
"CHANGELOG.md",
"**/*.js",
"**/*.d.ts",
"**/*.json"
],
"devDependencies": {
"@eslint/compat": "1.3.2",
"@types/node": "24.5.2",
"@typescript-eslint/eslint-plugin": "8.44.0",
"@typescript-eslint/parser": "8.44.0",
"@vitest/coverage-v8": "3.2.4",
"ajv": "8.17.1",
"esbuild": "0.25.10",
"eslint": "9.35.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-prettier": "5.5.4",
"eslint-plugin-simple-import-sort": "12.1.1",
"eslint-plugin-unused-imports": "4.2.0",
"glob": "11.0.3",
"husky": "9.1.7",
"lint-staged": "16.1.6",
"perf_hooks": "0.0.1",
"prettier": "3.6.2",
"ts-node": "10.9.2",
"typedoc": "0.28.13",
"typescript": "5.9.2",
"vitest": "3.2.4"
},
"keywords": [
"util",
"mongo",
"nosql",
"query",
"aggregate",
"filter",
"group",
"project",
"search",
"transform",
"update",
"modify"
],
"author": {
"name": "Francis Asante",
"email": "kofrasa@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/kofrasa/mingo/issues"
},
"lint-staged": {
"*.ts": "eslint --cache --fix"
}
}