-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.53 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
56
57
58
59
60
{
"name": "crdt-woot",
"version": "1.0.0",
"description": "A collaborative text editor using the CRDT algorithm WOOT.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"test": "mocha -r ts-node/register test/*.ts",
"build": "rm -rf dist && tsc",
"start:client-example": "npm install && npm run build && cd client-example && npm install && npm start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PHedkvist/crdt-woot.git"
},
"keywords": [
"crdt",
"conflict free replicated data-type",
"woot",
"without operational transformation",
"collaborative text editor"
],
"author": "[email protected]",
"license": "ISC",
"bugs": {
"url": "https://github.com/PHedkvist/crdt-woot/issues"
},
"homepage": "https://github.com/PHedkvist/crdt-woot#readme",
"devDependencies": {
"@stryker-mutator/core": "^5.6.1",
"@stryker-mutator/mocha-runner": "^5.6.1",
"@types/chai": "^4.2.14",
"@types/express": "^4.17.8",
"@types/mocha": "^8.0.4",
"chai": "^4.2.0",
"mocha": "^8.2.1",
"nodemon": "^2.0.12",
"prettier": "2.1.2",
"ts-node": "^9.0.0",
"tslint": "^6.1.3",
"typescript": "^4.0.5"
},
"dependencies": {
"@types/lodash": "^4.14.167",
"@types/uuid": "^8.3.0",
"express": "^4.17.1",
"lodash": "^4.17.20",
"uuid": "^8.3.1"
},
"mocha": {
"require": [
"ts-node/register",
"source-map-support/register"
],
"extension": "ts"
}
}