-
Notifications
You must be signed in to change notification settings - Fork 67
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.66 KB
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
{
"name": "sharedb-mongo",
"version": "6.0.0",
"description": "MongoDB database adapter for ShareDB",
"main": "index.js",
"dependencies": {
"mongodb": "^3.1.13 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0",
"sharedb": "^1.9.1 || ^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"async": "^3.2.4",
"chai": "^6.2.2",
"coveralls": "^3.0.7",
"eslint": "^10.5.0",
"eslint-config-google": "^0.14.0",
"mocha": "^11.7.6",
"mongodb3": "npm:mongodb@^3.0.0",
"mongodb4": "npm:mongodb@^4.0.0",
"mongodb5": "npm:mongodb@^5.0.0",
"mongodb6": "npm:mongodb@^6.0.0",
"mongodb7": "npm:mongodb@^7.0.0",
"nyc": "^18.0.0",
"ot-json1": "^1.0.1",
"rich-text": "^4.1.0",
"sharedb": "^6.0.0",
"sharedb-mingo-memory": "^5.0.0",
"sinon": "^22.0.0",
"sinon-chai": "^4.0.1"
},
"scripts": {
"lint": "./node_modules/.bin/eslint .",
"lint:fix": "npm run lint -- --fix",
"test": "mocha",
"test:mongodb3": "_SHAREDB_MONGODB_DRIVER=mongodb3 npm test",
"test:mongodb4": "_SHAREDB_MONGODB_DRIVER=mongodb4 npm test",
"test:mongodb5": "_SHAREDB_MONGODB_DRIVER=mongodb5 npm test",
"test:mongodb6": "_SHAREDB_MONGODB_DRIVER=mongodb6 npm test",
"test:mongodb7": "_SHAREDB_MONGODB_DRIVER=mongodb7 npm test",
"test:all": "npm run test:mongodb3 && npm run test:mongodb4 && npm run test:mongodb5 && npm run test:mongodb6 && npm run test:mongodb7",
"test-cover": "nyc --temp-dir=coverage -r text -r lcov npm run test:all"
},
"repository": "git://github.com/share/sharedb-mongo.git",
"author": "Nate Smith and Joseph Gentle",
"license": "MIT"
}