-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 906 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 906 Bytes
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
{
"name": "otter-js",
"version": "0.3.0",
"description": "Operational Transformation library for Relatime Collaborative Editing",
"main": "src/index.js",
"author": "",
"license": "Apache-2.0",
"repository": "LevelFourAB/otter-js",
"scripts": {
"test": "node_modules/.bin/mocha test/**/*.test.js && node_modules/.bin/eslint .",
"coverage": "node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- -R spec ./test/**/*.test.js"
},
"keywords": [
"ot",
"operational transformation",
"editing"
],
"devDependencies": {
"chai": "^4.0.0",
"coveralls": "^2.13.1",
"eslint": "^3.19.0",
"eslint-plugin-node": "^4.2.2",
"istanbul": "^0.4.5",
"mocha": "^3.4.2",
"socket.io": "^1.4.8",
"socket.io-client": "^1.4.8",
"webpack-stream": "^3.2.0"
},
"dependencies": {
"fast-diff": "^1.0.1",
"hashlru": "^2.2.0"
}
}