-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
53 lines (53 loc) · 1.49 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
48
49
50
51
52
53
{
"name": "bnc-sdk",
"version": "4.6.9",
"description": "SDK to connect to the blocknative backend via a websocket connection",
"keywords": [
"ethereum",
"websocket",
"blocknative",
"notifications"
],
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"typings": "dist/types/src/index.d.ts",
"files": [
"dist"
],
"author": "Aaron Barnard <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/blocknative/sdk"
},
"license": "MIT",
"scripts": {
"build": "rimraf dist && rollup -c && babel dist/esm/index.js -o dist/esm/index.js && babel dist/cjs/index.js -o dist/cjs/index.js",
"test": "echo \"TBD\" && exit 0",
"prepare": "npm run build"
},
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-json": "^4.0.0",
"@rollup/plugin-node-resolve": "^7.1.1",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"babel-plugin-external-helpers": "^6.18.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"prettier": "^2.0.5",
"rimraf": "^3.0.0",
"rollup": "^1.27.5",
"rollup-plugin-typescript2": "0.21.0",
"typescript": "^3.6.4"
},
"dependencies": {
"crypto-es": "^1.2.2",
"nanoid": "^3.3.1",
"rxjs": "^6.6.3",
"sturdy-websocket": "^0.1.12"
}
}