forked from haven-protocol-org/haven-web-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.96 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
54
55
56
57
58
59
60
{
"name": "haven-wallet-core",
"description": "A JavaScript library for using Haven",
"version": "4.1.1",
"license": "MIT",
"repository": "https://github.com/haven-protocol-org/haven-web-core",
"private": false,
"main": "index.js",
"scripts": {
"start": "todo",
"build_bundle": "webpack --config ./webpack.bundle.js --display-modules",
"build_worker": "webpack --config ./webpack.web-worker.js",
"build_web_tests": "webpack --config ./webpack.tests.js",
"test": "node --experimental-wasm-threads --experimental-wasm-bulk-memory node_modules/mocha/bin/_mocha 'src/test/TestAll' --timeout 900000000 --exit",
"debug-test": "node --experimental-wasm-threads --inspect-brk --experimental-wasm-bulk-memory node_modules/mocha/bin/_mocha 'src/test/TestAll' --timeout 900000000 --exit",
"jsdoc": "jsdoc -r -c ./configs/jsdoc_config.js -d ./docs"
},
"dependencies": {
"ajv": "^6.12.6",
"async": "2.6.4",
"axios": "^1.7.7",
"crypto-js": "^4.2.0",
"html5-fs": "0.1.1",
"memfs": "^3.2.2",
"net": "^1.0.2",
"promise-throttle": "^1.1.2",
"serialize-javascript": "^3.1.0",
"text-encoding": "^0.7.0",
"tls": "0.0.1",
"uuid": "3.3.2",
"web-worker": "github:haven-protocol-org/web-worker"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"assert": "^2.0.0",
"babel-loader": "8.0.2",
"browserify-zlib": "^0.2.0",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"eslint": "^8.0.1",
"https-browserify": "^1.0.0",
"jsdoc": "^4.0.3",
"memfs": "^3.2.0",
"minimist": "^1.2.5",
"mocha": "^9.1.3",
"os-browserify": "^0.3.0",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"querystring-es3": "^0.2.1",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"url": "^0.11.0",
"util": "^0.12.4",
"webpack": "^5.50.0",
"webpack-cli": "^4.8.0",
"webpack-merge": "4.1.4",
"worker-loader": "3.0.0",
"yargs-parser": "^18.1.3"
}
}