-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
45 lines (45 loc) · 1.11 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
{
"name": "mongoose-algolia",
"description": "Mongoose plugin to automatically sync documents to Algolia",
"main": "src/index.js",
"scripts": {
"commit": "git-cz",
"test": "echo \"No tests yet\"",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/crsten/mongoose-algolia.git"
},
"keywords": [
"mongoose",
"plugin",
"algolia",
"index",
"sync"
],
"author": "'Carsten <'[email protected]'> (http://www.crsten.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/crsten/mongoose-algolia/issues"
},
"homepage": "https://github.com/crsten/mongoose-algolia#readme",
"dependencies": {
"algoliasearch": "^3.35.1",
"cli-color": "^1.1.0",
"deep-keys": "^0.4.0"
},
"devDependencies": {
"cz-conventional-changelog": "^2.1.0",
"dotenv": "^2.0.0",
"mongoose": "^5.7.5",
"semantic-release": "^15.13.3",
"semantic-release-cli": "^4.1.2"
},
"version": "0.0.0-development",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}