-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.47 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
{
"name": "q2ma",
"version": "0.10.3",
"description": "Query string to mongodb paginated aggregation",
"main": "index.js",
"keywords": [
"query string",
"mongodb",
"mongoose",
"pagination",
"paginated query",
"aggregation",
"aggregate",
"q2m",
"q2ma"
],
"repository": {
"type": "git",
"url": "https://github.com/HMarzban/q2ma"
},
"bugs": {
"url": "https://github.com/HMarzban/q2ma/issues"
},
"license": "Apache",
"author": {
"name": "Hossein Marzban",
"email": "[email protected]"
},
"contributors": [
{
"name": "Hossein Marzban",
"email": "[email protected]"
},
{
"name": "Babak Khorrami",
"email": "[email protected]",
"url": "https://github.com/unicornist"
}
],
"scripts": {
"test": "node ./datasources/dump.js & jest --coverage",
"test:badges": "npm run test --forceExit & npx --config jest.config.js jest-coverage-badges",
"pretty": "npx prettier-standard --format --lint ./**/*.js"
},
"husky": {
"hooks": {
"pre-commit": "npm run pretty",
"pre-push": "npm run test:badges"
}
},
"devDependencies": {
"faker": "^4.1.0",
"husky": "^4.2.5",
"jest": "^25.1.0",
"jest-coverage-badges": "^1.1.2",
"mongodb": "^3.5.9",
"mongodb-memory-server": "^6.6.1",
"mongoose": "^5.9.21",
"prettier-standard": "^16.3.0"
},
"dependencies": {
"bson": "^4.0.3",
"query-to-mongo": "^0.10.1"
}
}