-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.07 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.07 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
{
"name": "taproot-client",
"version": "0.2.2",
"description": "Taproot WebSocket Client",
"keywords": ["websocket", "taproot"],
"author": "Benjamin Paine <painebenjamin@gmail.com>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/painebenjamin/taproot.js.git"
},
"bugs": {
"url": "https://github.com/painebenjamin/taproot.js/issues"
},
"homepage": "https://github.com/painebenjamin/taproot.js#README",
"main": "dist/taproot.min.js",
"module": "dist/taproot.esm.mjs",
"scripts": {
"build": "webpack --config webpack.config.js && rollup -c",
"test": "node test.js",
"prepublishOnly": "npm run build && npm run test"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"@msgpack/msgpack": "^3.0.0-beta2",
"@rollup/plugin-babel": "^6.0.4",
"babel-loader": "^8.2.2",
"rollup": "^2.52.7",
"terser-webpack-plugin": "^5.1.4",
"webpack": "^5.42.0",
"webpack-cli": "^4.7.2"
},
"dependencies": {
"jsdom": "^25.0.1",
"ws": "^8.18.0"
}
}