forked from mymonero/mymonero-core-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.7 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "mymonero-core-js",
"version": "2.0.0",
"description": "The JS library containing the Monero crypto plus lightweight wallet functions behind the official MyMonero apps",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/mymonero/mymonero-core-js.git"
},
"scripts": {
"build:boost": "docker run --rm -it -v $(pwd):/app -w /app -w /app -e EMSCRIPTEN=/emsdk/upstream/emscripten emscripten/emsdk:3.0.1 ./bin/build-boost-emscripten.sh",
"build:emscripten": "docker run --rm -it -v $(pwd):/app -w /app -e EMSCRIPTEN=/emsdk/upstream/emscripten emscripten/emsdk:3.0.1 ./bin/archive-emcpp.sh",
"build": "./bin/build.sh",
"format": "find . -name '*.js*' | xargs prettier --write --config ./.prettierrc --config-precedence file-override",
"test": "npm run test:wasm && npm run test:asmjs",
"test:wasm": "mocha",
"test:asmjs": "node --noexpose_wasm ./node_modules/.bin/mocha",
"install": "napa"
},
"napa-config": {
"cache": false
},
"napa": {
"@mymonero/mymonero-core-cpp": "git+https://github.com/mymonero/mymonero-core-cpp",
"@mymonero/mymonero-core-custom": "git+https://github.com/mymonero/monero-core-custom"
},
"keywords": [
"monero",
"mymonero",
"javascript",
"js",
"lightweight",
"lightwallet",
"wallet",
"crypto",
"script",
"utility",
"tool"
],
"author": "MyMonero",
"license": "See LICENSE.TXT. Copyright (c) 2014-2019, MyMonero.com. All rights reserved.",
"bugs": {
"url": "https://github.com/mymonero/mymonero-core-js/issues"
},
"homepage": "https://github.com/mymonero/mymonero-core-js#readme",
"dependencies": {
"@babel/core": "^7.14.2",
"@babel/register": "^7.13.16",
"@mymonero/mymonero-bigint": "^1.1.3",
"@mymonero/mymonero-bridge-utils": "^1.1.3",
"@mymonero/mymonero-keyimage-cache": "^1.1.3",
"@mymonero/mymonero-monero-config": "^1.1.3",
"@mymonero/mymonero-money-format": "^1.1.3",
"@mymonero/mymonero-nettype": "^1.1.3",
"@mymonero/mymonero-paymentid-utils": "^1.1.3",
"@mymonero/mymonero-response-parser-utils": "^1.1.3",
"@mymonero/mymonero-sendfunds-utils": "^1.1.3",
"@mymonero/mymonero-tx-parsing-utils": "^1.1.3",
"babel-loader": "^8.2.2",
"babel-minify": "^0.5.1",
"load-script": "^2.0.0",
"napa": "^3.0.0"
},
"devDependencies": {
"html5-fs": "0.1.1",
"lodash": "^4.17.21",
"mocha": "^8.4.0",
"webpack": "^5.37.0",
"webpack-cli": "^4.7.0",
"webpack-merge": "4.1.4"
},
"jest": {
"testEnvironment": "node",
"verbose": true,
"coveragePathIgnorePatterns": [
"node_modules",
"monero_utils/MyMoneroCoreCpp_WASM.js",
"tests/emjs/*"
]
}
}