forked from woodser/monero-ts
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.89 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.89 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "monero-javascript",
"description": "A JavaScript library for using Monero",
"version": "0.7.0",
"license": "MIT",
"repository": "https://github.com/monero-ecosystem/monero-javascript",
"private": false,
"main": "index.js",
"scripts": {
"start": "todo",
"build_web_worker": "webpack --config ./webpack.worker.js",
"build_web_tests": "webpack --config ./webpack.tests.js",
"test": "node --experimental-wasm-threads node_modules/mocha/bin/_mocha 'src/test/TestAll' --timeout 900000000 --exit",
"jsdoc": "jsdoc -r -c ./configs/jsdoc_config.js -d ./docs"
},
"build": {
"publish": [
{
"provider": "github",
"owner": "woodser",
"repo": "monero-javascript"
}
]
},
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
"ajv": "^6.12.6",
"async": "2.6.4",
"crypto-js": "^4.0.0",
"html5-fs": "0.1.1",
"net": "^1.0.2",
"promise-throttle": "^1.1.2",
"request": "^2.88.0",
"request-promise": "^4.2.6",
"serialize-javascript": "^3.1.0",
"text-encoding": "^0.7.0",
"tls": "0.0.1",
"uuid": "3.3.2",
"web-worker": "^1.0.0"
},
"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",
"electron": "^15.2.0",
"eslint": "^8.0.1",
"https-browserify": "^1.0.0",
"jsdoc": "^3.6.7",
"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": "2.0.0",
"yargs-parser": "^18.1.3"
}
}