forked from VassilisPallas/mongoose-fuzzy-searching
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·60 lines (60 loc) · 1.59 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
{
"name": "mongoose-fuzzy-searching",
"version": "2.0.3",
"author": "Vassilis Pallas <[email protected]>",
"description": "Mongoose fuzzy searching plugin",
"main": "index.js",
"scripts": {
"lint:fix": "eslint --fix .",
"format": "prettier --write \"./**/*.{json,js}\"",
"lint": "eslint --ext .js \"./**/*.{json,js}\"",
"test:integration": "jest --colors --runInBand __tests__/**.test.js",
"test:unit": "jest --colors spec.js",
"test": "jest --colors --runInBand",
"test:watch": "npm test -- --watch",
"test:unit:watch": "npm run test:unit --watch",
"test:integration:watch": "npm run test:integration --watch"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./**/**/*.{json,js}": [
"npm run lint",
"npm run format"
]
},
"keywords": [
"mongoose",
"fuzzy",
"searching",
"search",
"plugin",
"mongo",
"mongodb"
],
"bugs": {
"url": "https://github.com/VassilisPallas/mongoose-fuzzy-searching/issues"
},
"homepage": "https://github.com/VassilisPallas/mongoose-fuzzy-searching",
"license": "MIT",
"peerDependencies": {
"mongoose": "5.10.x"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.11.0",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^4.2.5",
"jest": "^26.0.1",
"lint-staged": "^10.2.2",
"mongodb-memory-server": "^6.6.0",
"mongoose": "^5.10.11",
"prettier": "^2.0.5"
}
}