-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
66 lines (66 loc) · 1.71 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
{
"name": "mongodb-pipelinejs",
"version": "0.1.5",
"description": "Use short and sweet JS syntax to compose and cleanly format MongoDB aggregations.",
"main": "index.js",
"types": "index.d.ts",
"repository": "[email protected]:speedytwenty/mongodb-pipelinejs.git",
"author": "speedytwenty <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"nonenumerable": "^1.1.1"
},
"devDependencies": {
"@jsdoc/salty": "^0.2.7",
"@types/jest": "^29.5.4",
"@types/node": "^20.5.6",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "^5.0.0",
"better-docs": "~2.7.3",
"eslint": "^8.56.0",
"eslint-plugin-jest": "^27.6.3",
"eslint-plugin-jsdoc": "^48.0.6",
"jest": "^29.6.4",
"jsdoc": "^3.2.2",
"prop-types": "^15.5.9",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-frame-component": "^5.2.6",
"terser": "^5.26.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "~5.1.0"
},
"scripts": {
"build": "tsc --build && terser index.js -o min.js",
"cleanup": "rm -fr index.js index.d.ts min.js",
"docs": "jsdoc -c jsdoc.json -d docs index.ts",
"lint": "eslint --fix --ext .ts .",
"prepack": "yarn build",
"postpack": "yarn cleanup",
"test": "jest",
"test:coverage": "jest --coverage",
"watch": "nodemon -w index.ts -x yarn docs"
},
"files": [
"index.d.ts",
"min.js"
],
"keywords": [
"mongodb",
"mongoose",
"aggregate",
"pipeline",
"aggregate",
"aggregation",
"mongo round",
"mongodb round",
"mongodb stages",
"mongodb operators",
"pipemongo"
],
"volta": {
"node": "20.11.0",
"yarn": "1.22.22"
}
}