forked from Operational-Transformation/ot.js
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
40 lines (40 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
{
"name": "@hackmd/ot",
"description": "Collaborative editing using operational transformation",
"keywords": [
"operational transformation"
],
"version": "0.1.0",
"author": "Tim Baumann <[email protected]> (http://timbaumann.info), Max Wu <[email protected]>",
"homepage": "http://operational-transformation.github.com",
"repository": {
"type": "git",
"url": "https://github.com/operational-transformation/ot.js"
},
"bugs": {
"url": "https://github.com/operational-transformation/ot.js/issues"
},
"main": "./lib/index.js",
"devDependencies": {
"grunt": "*",
"grunt-contrib-concat": "*",
"grunt-contrib-connect": "*",
"grunt-contrib-jshint": "*",
"grunt-contrib-nodeunit": "*",
"grunt-contrib-qunit": "*",
"grunt-contrib-uglify": "*",
"grunt-contrib-watch": "*",
"socket.io": "4.7.2",
"typescript": "5.2.2"
},
"scripts": {
"test": "grunt jshint nodeunit qunit",
"build": "grunt"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/github.com/operational-transformation/ot.js/raw/master/LICENSE"
}
]
}