forked from kofrasa/mingo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.83 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
{
"name": "mingo",
"version": "6.0.0",
"description": "MongoDB query language for in-memory objects",
"main": "lib",
"module": "lib",
"scripts": {
"prepare": "husky install",
"docs": "typedoc --entryPointStrategy expand src/ && touch docs/.nojekyll",
"build": "tsc && node ./build.js",
"test": "jest",
"dist": "npm run build && npm run test && cd lib && npm publish",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"prepublishOnly": "echo \"use 'npm run dist'\" && false",
"postinstall": "node ./build.js install"
},
"repository": {
"type": "git",
"url": "https://github.com/kofrasa/mingo.git"
},
"files": [
"lib/",
"LICENSE",
"README.md",
"CHANGELOG.md"
],
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"ajv": "^8.9.0",
"codecov": "^3.8.3",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.x.x",
"eslint-plugin-import": "^2.x.x",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^7.0.4",
"jest": "^27.4.7",
"lint-staged": "^12.3.2",
"nyc": "^15.1.0",
"perf_hooks": "^0.0.1",
"prettier": "^2.5.1",
"ts-jest": "^27.1.3",
"ts-node": "^10.4.0",
"typedoc": "^0.22.10",
"typescript": "^4.4.4"
},
"keywords": [
"util",
"mongo",
"nosql",
"query",
"aggregate",
"filter",
"group",
"project",
"search",
"transform"
],
"author": {
"name": "Francis Asante",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/kofrasa/mingo/issues"
},
"lint-staged": {
"*.ts": "eslint --cache --fix"
}
}