-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.02 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.02 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
{
"name": "sharedb",
"version": "1.4.1",
"description": "JSON OT database backend",
"main": "lib/index.js",
"dependencies": {
"arraydiff": "^0.1.1",
"async": "^2.6.3",
"fast-deep-equal": "^2.0.1",
"hat": "0.0.3",
"ot-json0": "^1.0.1"
},
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.7",
"eslint": "^6.5.1",
"eslint-config-google": "^0.14.0",
"lolex": "^5.1.1",
"mocha": "^6.2.2",
"nyc": "^14.1.1",
"ot-json1": "^0.3.0",
"sharedb-legacy": "npm:sharedb@=1.1.0",
"sinon": "^7.5.0"
},
"scripts": {
"test": "./node_modules/.bin/mocha && npm run lint",
"test-cover": "node_modules/nyc/bin/nyc.js --temp-dir=coverage -r text -r lcov node_modules/mocha/bin/_mocha && npm run lint",
"lint": "./node_modules/.bin/eslint --ignore-path .gitignore '**/*.js'",
"lint:fix": "npm run lint -- --fix"
},
"repository": {
"type": "git",
"url": "git://github.com/share/sharedb.git"
},
"author": "Nate Smith and Joseph Gentle",
"license": "MIT"
}