-
Notifications
You must be signed in to change notification settings - Fork 98
/
package.json
57 lines (57 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
51
52
53
54
55
56
57
{
"name": "ocore",
"description": "Obyte Core",
"author": "Obyte",
"version": "0.4.2",
"keywords": [
"obyte",
"byteball",
"DAG",
"DLT",
"cryptocurrency",
"blockchain",
"smart contract",
"multisignature"
],
"homepage": "https://github.com/byteball/ocore",
"license": "MIT",
"repository": {
"url": "git://github.com/byteball/ocore.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/byteball/ocore/issues"
},
"browser": {
"request": "browser-request",
"secp256k1": "secp256k1/elliptic"
},
"dependencies": {
"async": "^2.6.1",
"decimal.js": "^10.0.2",
"bitcore-mnemonic": "~1.0.0",
"dotenv": "5.0.1",
"https-proxy-agent": "^5.0.0",
"jszip": "^3.1.3",
"level-rocksdb": "^5",
"lodash": "^4.6.1",
"moo": "0.5.1",
"mysql": "^2.10.2",
"nearley": "2.16.0",
"nodemailer": "^6.7.0",
"secp256k1": "^4",
"socks": "1.1.10",
"sqlite3": "^5",
"thirty-two": "^1.0.1",
"ws": "^1.0.1"
},
"scripts": {
"test": "yarn ava --timeout=60s --concurrency=1 --fail-fast --verbose",
"compileGrammar:oscript": "nearleyc ./formula/grammars/oscript.ne -o ./formula/grammars/oscript.js",
"compileGrammar:ojson": "nearleyc ./formula/grammars/ojson.ne -o ./formula/grammars/ojson.js"
},
"devDependencies": {
"ava": "^0.22.0",
"testcheck": "^1.0.0-rc.2"
}
}