-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.54 KB
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
{
"name": "ycabal-sdk",
"version": "3.0.2",
"description": "SDK to connect to the backbone backend via a websocket connection",
"keywords": [
"ethereum",
"websocket",
"backbone",
"notifications"
],
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"typings": "dist/types/src/index.d.ts",
"files": [
"dist",
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/backbonecabal/sdk"
},
"license": "MIT",
"scripts": {
"build": "npx rollup -c && npx babel dist/esm/index.js -o dist/esm/index.js && npx babel dist/cjs/index.js -o dist/cjs/index.js",
"test": "echo \"TBD\" && exit 0",
"build:clean": "rm -rf dist/ && rnpx ollup -c && npx babel dist/esm/index.js -o dist/esm/index.js && npx babel dist/cjs/index.js -o dist/cjs/index.js"
},
"devDependencies": {
"@babel/cli": "^7.12.13",
"@babel/core": "^7.12.13",
"@babel/preset-env": "^7.5.5",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-json": "^4.0.0",
"@rollup/plugin-node-resolve": "^11.1.1",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"babel-plugin-external-helpers": "^6.18.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"prettier": "^2.0.5",
"rimraf": "^3.0.0",
"rollup": "^2.41.3",
"rollup-plugin-typescript2": "0.29.0",
"typescript": "^3.6.4"
},
"dependencies": {
"crypto-es": "^1.2.2",
"rxjs": "^6.6.3",
"sturdy-websocket": "^0.2.1"
}
}