forked from TheTrunk/mycryptonight
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.44 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
{
"name": "mycryptonight",
"version": "1.1.1",
"description": "The JS library containing the Monero crypto plus lightweight wallet functions behind the official ZelCore application",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/zelcash/mycryptonight.git"
},
"scripts": {
"format": "find . -name '*.js*' | xargs prettier --write --config ./.prettierrc --config-precedence file-override",
"test": "jest",
"test:coverage": "jest --coverage"
},
"keywords": [
"monero",
"mymonero",
"javascript",
"js",
"lightweight",
"lightwallet",
"wallet",
"crypto",
"script",
"utility",
"tool"
],
"contributors": [
{
"name": "Tadeas Kmenta",
"email": "[email protected]"
}
],
"author": "MyMonero",
"license": "See LICENSE.TXT. Copyright (c) 2014-2018, MyMonero.com. All rights reserved.",
"bugs": {
"url": "https://github.com/zelcash/mycryptonight/issues"
},
"homepage": "https://github.com/zelcash/mycryptonight#readme",
"dependencies": {
"async": "^2.6.0",
"axios": "^0.18.0"
},
"devDependencies": {
"jest": "^23.1.0"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"node_modules",
"cryptonote_utils/biginteger.js",
"cryptonote_utils/nacl-fast-cn.js",
"cryptonote_utils/sha3.js",
"cryptonote_utils/cryptonote_crypto_EMSCRIPTEN.js"
]
}
}