-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.92 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.92 KB
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
{
"name": "@scrypta/core",
"version": "3.0.7",
"description": "Scrypta Javascript Library for build Blockchain enabled applications.",
"private": false,
"main": "src/index.js",
"bin": {
"scrypta": "./src/cli.js"
},
"typings": "./types/index.d.ts",
"scripts": {
"test:local": "mocha test/test.local.js",
"test:xsid": "mocha test/test.xsid.js",
"test:contracts": "mocha test/test.contracts.js",
"test:static": "node test/test.static.js",
"test:p2p": "node test/test.p2p.js",
"test:planum": "node test/test.planum.js",
"test:permissioned": "node test/test.planum.permissioned.js",
"test:tx": "node test/test.transactions.js",
"ts:dtslint": "dtslint ./types/",
"test:nodes": "mocha test/test.nodes.js",
"pub": "npm publish --access public"
},
"keywords": [
"blockchain",
"scrypta",
"scryptachain"
],
"author": "Scrypta",
"repository": {
"type": "git",
"url": "https://github.com/scryptachain/scrypta-core"
},
"bugs": {
"url": "https://github.com/scryptachain/scrypta-core/issues",
"email": "sebastiano.c@scrypta.foundation"
},
"license": "MIT",
"dependencies": {
"@scrypta/bip39": "^3.0.4",
"@scrypta/coinkey": "^3.0.2",
"axios": "^0.21.0",
"binstring": "^0.2.1",
"browser-cookies": "^1.2.0",
"create-hash": "^1.2.0",
"crypto-hashing": "^1.0.0",
"crypto-js": "^4.0.0",
"ecdsa": "^0.7.0",
"eckey": "^1.0.1",
"ecurve": "^1.0.6",
"hdkey": "^2.0.1",
"lodash": "^4.17.20",
"mathjs": "^8.0.1",
"node-rsa": "^1.1.1",
"ripemd160": "^2.0.2",
"secp256k1": "^4.0.2",
"secure-random": "^1.1.2",
"socket.io": "^3.0.3",
"socket.io-client": "^3.0.3",
"transaction-hex-decoder": "^1.0.2",
"uuid": "^8.3.1",
"yargs": "^16.1.1"
},
"devDependencies": {
"conditional-type-checks": "^1.0.5",
"dtslint": "^4.0.6",
"mocha": "^8.2.1",
"typescript": "^4.1.3"
}
}