-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.08 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
{
"name": "push-model",
"version": "1.0.0",
"description": "A JSON-RPC server with object synchronization based on JSON-Patch",
"keywords": [
"mvc",
"model",
"push",
"synchronization",
"observe",
"jsonpatch",
"firebase"
],
"license": "MIT",
"author": "Hai Phan <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/ken107/push-model"
},
"bugs": {
"url": "https://github.com/ken107/push-model/issues"
},
"main": "dist/pushmodel.js",
"types": "dist/pushmodel.d.ts",
"files": [
"dist/pushmodel.js",
"dist/pushmodel.d.ts"
],
"scripts": {
"build": "tsc",
"test": "node ./examples/chat/model.test.js && node ./examples/messenger/model.test.js && node ./examples/sharedtodolist/model.test.js"
},
"dependencies": {
"@types/node": "^20.14.4",
"json-pointer": "^0.6.2",
"jsonpatch-observe": "^1.0.0",
"ws": "^8.17.1"
},
"engines": {
"node": ">=6.4.0"
},
"devDependencies": {
"@types/json-pointer": "^1.0.34",
"@types/ws": "^8.5.10",
"typescript": "^5.4.5"
}
}