-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.61 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
{
"author": "Contentstack Ecosystem <[email protected]>",
"name": "@contentstack/datasync-mongodb-sdk",
"version": "1.0.11",
"description": "Mongodb query wrapper around contents synced via @contentstack/content-store-mongodb",
"main": "dist/index.js",
"scripts": {
"clean": "rimraf dist typings coverage",
"build-ts": "npm run clean && tsc",
"build-doc": "npm run build-ts && ./node_modules/.bin/jsdoc dist/ -r -R README.md -d docs",
"watch-ts": "npm run clean && tsc -w",
"compile": "tsc",
"prepare": "npm run compile",
"start": "dist/index.js",
"tslint": "npx tslint -c tslint.json 'src/**/*.ts' --fix",
"test": "jest"
},
"license": "MIT",
"dependencies": {
"lodash": "^4.17.21",
"mongodb": "^6.12.0",
"sift": "^17.1.3"
},
"devDependencies": {
"@types/jest": "29.5.14",
"@types/lodash": "4.17.14",
"@types/node": "10.17.60",
"@types/rimraf": "4.0.5",
"debug": "^4.4.0",
"jest": "^29.7.0",
"jsdoc": "^4.0.4",
"node-notifier": "^10.0.1",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"tslint": "^5.20.1",
"typescript": "^4.9.5"
},
"engines": {
"node": ">=8"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"contentstack",
"utility",
"DataSync",
"mongodb-content-store"
],
"repository": {
"type": "git",
"url": "https://github.com/contentstack/datasync-mongodb-sdk"
},
"bugs": {
"url": "https://github.com/contentstack/datasync-mongodb-sdk#readme/issues"
},
"homepage": "https://www.contentstack.com/docs/guide/synchronization/contentstack-datasync"
}