forked from peer-base/js-delta-crdts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 864 Bytes
/
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
{
"name": "delta-crdts",
"version": "0.10.3",
"description": "Delta-based State CRDTs",
"main": "src/index.js",
"scripts": {
"test": "npm run test:node && npm run test:browser",
"test:node": "aegir test --target node",
"test:browser": "AEGIR_BROWSERS=Chrome,Firefox aegir test --target browser",
"lint": "aegir lint"
},
"author": "Pedro Teixeira <i@pgte.me>",
"license": "MIT",
"devDependencies": {
"aegir": "^18.0.3",
"allcombinations": "^1.1.4",
"chai": "^4.2.0",
"delay": "^4.1.0",
"dirty-chai": "^2.0.1",
"p-queue": "^3.0.0",
"pre-commit": "^1.2.2",
"shuffle-array": "^1.0.1"
},
"dependencies": {
"array.prototype.flatmap": "^1.2.1",
"delta-crdts-msgpack-codec": "~0.2.0",
"hash-it": "^4.0.4",
"immutable": "^4.0.0-rc.12"
},
"pre-commit": [
"lint",
"test"
]
}