-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.44 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
{
"name": "cooperatio",
"version": "1.0.0",
"description": "Real-time collaborative JSON and plain-text editing with Operational Transformation in TypeScript.",
"main": "index.js",
"scripts": {
"clean": "trash build",
"build": "run-s clean && run-p build:*",
"build:main": "tsc -p tsconfig.json",
"build:module": "tsc -p tsconfig.module.json",
"test": "mocha -r ts-node/register ./test/**/*.spec.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/peterbartha/cooperatio.git"
},
"keywords": [
"real-time",
"collaboration",
"framework",
"ot",
"operational",
"transformation",
"plain-text",
"json",
"object",
"typescript"
],
"author": "Peter Bartha",
"license": "MIT",
"bugs": {
"url": "https://github.com/peterbartha/cooperatio/issues"
},
"homepage": "https://github.com/peterbartha/cooperatio#readme",
"devDependencies": {
"@types/chai": "^4.1.3",
"@types/codemirror": "0.0.56",
"@types/deep-equal": "^1.0.1",
"@types/mocha": "^5.2.0",
"@types/ws": "^5.1.0",
"chai": "^4.1.2",
"mocha": "^5.1.1",
"npm-run-all": "^4.1.3",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-typescript2": "^0.13.0",
"source-map-support": "^0.5.5",
"trash-cli": "^1.4.0",
"ts-node": "^6.0.3",
"typescript": "^2.8.3"
},
"dependencies": {
"deep-equal": "^1.0.1"
}
}