forked from mymonero/mymonero-core-js
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
60 lines (60 loc) · 1.59 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": "@exodus/mymonero-core-js",
"version": "18.1.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": {
"format": "find . -name '*.js*' | xargs prettier --write --config ./.prettierrc --config-precedence file-override",
"test": "mocha"
},
"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": {},
"devDependencies": {
"babel-core": "6.26.3",
"babel-loader": "8.0.2",
"babel-minify": "0.4.3",
"html5-fs": "0.1.1",
"mocha": "5.2.0",
"webpack": "4.19.1",
"webpack-cli": "3.1.0",
"webpack-merge": "4.1.4"
},
"files": [
"index.js",
"monero_utils/MyMoneroBridge_utils.js",
"monero_utils/MyMoneroCoreBridgeEssentialsClass.js",
"monero_utils/MyMoneroCoreCpp_WASM.js",
"monero_utils/MyMoneroCoreCpp_WASM.wasm"
],
"jest": {
"testEnvironment": "node",
"verbose": true,
"coveragePathIgnorePatterns": [
"node_modules",
"monero_utils/MyMoneroCoreCpp_WASM.js",
"tests/emjs/*"
]
}
}