forked from ArqTras/ryo-core-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.38 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
{
"name": "ryo-core-js",
"version": "1.2.0",
"description": "The JS library containing Ryo crypto functions for use with lightweight wallets",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/ryo-currency/ryo-core-js.git"
},
"scripts": {
"format": "find . -name '*.js*' | xargs prettier --write --config ./.prettierrc --config-precedence file-override",
"test": "mocha"
},
"keywords": [
"ryo",
"javascript",
"js",
"lightweight",
"lightwallet",
"wallet",
"crypto",
"script",
"utility",
"tool"
],
"author": "MyMonero",
"contributors": [
"Ryo-currency <[email protected]> (https://ryo-currency.com/)"
],
"license": "See LICENSE.TXT. Copyright (c) 2014-2018, MyMonero.com. All rights reserved.",
"bugs": {
"url": "https://github.com/ryo-currency/ryo-core-js/issues"
},
"homepage": "https://github.com/ryo-currency/ryo-core-js#readme",
"dependencies": {
"big-integer": "^1.6.41"
},
"devDependencies": {
"mocha": "^5.2.0"
},
"jest": {
"testEnvironment": "node",
"verbose": true,
"coveragePathIgnorePatterns": [
"node_modules",
"ryo_utils/RyoCoreCpp.js",
"tests/emjs/*"
]
}
}