-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.04 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
{
"name": "rembus",
"version": "0.1.0",
"description": "Rembus client api",
"main": "dist/rembus.cjs.js",
"module": "dist/rembus.esm.js",
"dependencies": {
"apache-arrow": "^16.1.0",
"cbor-x": "1.5.8",
"isomorphic-ws": "^5.0.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^11.0.1",
"@rollup/plugin-multi-entry": "^6.0.1",
"@rollup/plugin-node-resolve": "^7.0.0",
"jest": "^29.7.0",
"rollup": "^1.29.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-polyfill-node": "^0.13.0"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "jest",
"pretest": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cardo-org/rembus.js.git"
},
"keywords": [
"Rembus",
"rpc",
"pubsub",
"cbor"
],
"author": "Attilio Donà",
"license": "ISC",
"bugs": {
"url": "https://github.com/cardo-org/rembus.js/issues"
},
"homepage": "https://github.com/cardo-org/rembus.js#readme"
}