-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 888 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 888 Bytes
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": "delta-crdts-msgpack-codec",
"version": "0.2.0",
"description": "Msgpack codec for delta-crdts",
"main": "src/index.js",
"scripts": {
"test": "mocha",
"lint": "standard"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ipfs-shipyard/js-delta-crdts-msgpack-codec.git"
},
"keywords": [
"delta",
"crdts",
"msgpack",
"codec"
],
"author": "IPFS Shipyard",
"license": "MIT",
"bugs": {
"url": "https://github.com/ipfs-shipyard/js-delta-crdts-msgpack-codec/issues"
},
"homepage": "https://github.com/ipfs-shipyard/js-delta-crdts-msgpack-codec#readme",
"dependencies": {
"chai": "^4.2.0",
"dirty-chai": "^2.0.1",
"mocha": "^5.2.0",
"msgpack5": "^4.2.1"
},
"devDependencies": {
"pre-commit": "^1.2.2",
"standard": "^12.0.1"
},
"pre-commit": [
"lint",
"test"
]
}