forked from kofrasa/mingo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.94 KB
/
package.json
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
{
"name": "mingo",
"version": "6.4.4",
"description": "MongoDB query language for in-memory objects",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"scripts": {
"prepare": "husky install",
"docs": "typedoc --entryPointStrategy expand src/ && touch docs/.nojekyll",
"compile": "tsc && tsc --build tsconfig.cjs.json",
"build": "npm run clean && npm run compile && node ./build.js",
"clean": "rm -fr build",
"test": "jest",
"release": "npm run test && npm run build && cd build && npm publish",
"prepublishOnly": "echo \"use 'npm run release'\" && false",
"postinstall": "node ./build.js install"
},
"repository": {
"type": "git",
"url": "https://github.com/kofrasa/mingo.git"
},
"files": [
"LICENSE",
"README.md",
"CHANGELOG.md"
],
"devDependencies": {
"@types/jest": "^29.2.5",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "5.54.0",
"@typescript-eslint/parser": "^5.48.0",
"ajv": "^8.12.0",
"eslint": "8.40.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-simple-import-sort": "10.0.0",
"eslint-plugin-unused-imports": "2.0.0",
"glob": "^10.2.6",
"husky": "^8.0.3",
"jest": "^29.3.1",
"lint-staged": "^14.0.0",
"perf_hooks": "^0.0.1",
"prettier": "^3.0.0",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typedoc": "^0.25.0",
"typescript": "^4.9.4"
},
"keywords": [
"util",
"mongo",
"nosql",
"query",
"aggregate",
"filter",
"group",
"project",
"search",
"transform",
"update",
"modify"
],
"author": {
"name": "Francis Asante",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/kofrasa/mingo/issues"
},
"lint-staged": {
"*.ts": "eslint --cache --fix"
}
}