forked from RadiantBlockchain/radiantjs
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.23 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.23 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
71
72
73
74
{
"name": "@radiantblockchain/radiantjs",
"description": "Javascript library for Radiant Blockchain (RXD)",
"version": "1.9.5",
"author": "Radiant Blockchain <radiantblockchain@protonmail.com>",
"main": "index.js",
"scripts": {
"lint": "standard",
"lint_test": "standard && mocha",
"test": "mocha",
"radiant": "mocha --grep=\"radiant\"",
"exact_match": "mocha --grep=\"exact_match\"",
"coverage": "nyc --reporter=text npm run test",
"build-radiant": "NODE_OPTIONS=--openssl-legacy-provider webpack index.js --config webpack.config.js",
"build-ecies": "NODE_OPTIONS=--openssl-legacy-provider webpack ecies/index.js --config webpack.subproject.config.js --output-library radiantEcies -o radiant-ecies.min.js",
"build-message": "NODE_OPTIONS=--openssl-legacy-provider webpack message/index.js --config webpack.subproject.config.js --output-library radiantMessage -o radiant-message.min.js",
"build-mnemonic": "NODE_OPTIONS=--openssl-legacy-provider webpack mnemonic/index.js --config webpack.subproject.config.js --output-library radiantMnemonic -o radiant-mnemonic.min.js",
"build": "yarn build-radiant && yarn build-ecies && yarn build-message && yarn build-mnemonic",
"prepublishOnly": "yarn build"
},
"unpkg": "radiant.min.js",
"keywords": [
"radiant",
"radiant-blockchain",
"transaction",
"address",
"p2p",
"ecies",
"cryptocurrency",
"blockchain",
"payment"
],
"repository": {
"type": "git",
"url": "https://github.com/radiantblockchain/radiantjs"
},
"browser": {
"request": "browser-request"
},
"dependencies": {
"aes-js": "^3.1.2",
"bn.js": "=4.11.9",
"bs58": "=4.0.1",
"buffer": "^6.0.3",
"clone-deep": "^4.0.1",
"elliptic": "6.5.4",
"hash.js": "^1.1.7",
"inherits": "2.0.3",
"js-sha512": "^0.8.0",
"unorm": "1.4.1"
},
"devDependencies": {
"brfs": "2.0.1",
"chai": "4.2.0",
"mocha": "^8.4.0",
"nyc": "^14.1.1",
"sinon": "7.2.3",
"standard": "12.0.1",
"webpack": "4.29.3",
"webpack-cli": "^3.3.12"
},
"license": "MIT",
"standard": {
"globals": [
"afterEach",
"beforeEach",
"describe",
"it"
],
"ignore": [
"dist/**"
]
}
}