-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.88 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "raidencashcore-lib",
"version": "1.8.2",
"description": "A pure and powerful JavaScript RaidenCash library.",
"author": "RaidenCash Group, Inc.",
"main": "index.js",
"scripts": {
"lint": "jshint . || true",
"test": "npm run build && npm run test:node && npm run test:browser && npm run lint",
"test:node": "mocha --no-timeouts --recursive",
"test:browser": "karma start ./karma.conf.js --single-run",
"coverage": "nyc mocha --recursive",
"build": "webpack --display-error-details"
},
"contributors": [],
"keywords": [
"raidencash",
"transaction",
"address",
"p2p",
"ecies",
"cryptocurrency",
"blockchain",
"payment",
"bip21",
"bip32",
"bip37",
"bip69",
"bip70",
"multisig",
"raidencashcore"
],
"repository": {
"type": "git",
"url": "https://github.com/solaris-rig/raidencashcore-lib.git"
},
"bugs": {
"url": "https://github.com/solaris-rig/raidencashcore-lib/issues"
},
"homepage": "https://github.com/solaris-rig/raidencashcore-lib",
"browser": {
"request": "browser-request"
},
"dependencies": {
"multi-hashing-plus": "^1.0.0",
"bn.js": "=2.0.4",
"bs58": "=2.0.0",
"buffer-compare": "=1.0.0",
"elliptic": "=3.0.3",
"inherits": "=2.0.1",
"lodash": "^4.17.11",
"sha512": "=0.0.1"
},
"devDependencies": {
"brfs": "^2.0.1",
"chai": "^4.2.0",
"karma": "^3.1.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-detect-browsers": "^2.3.3",
"karma-firefox-launcher": "^1.1.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-webpack": "^3.0.5",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"raw-loader": "^0.5.1",
"sinon": "^4.5.0",
"transform-loader": "^0.2.4",
"uglifyjs-webpack-plugin": "^1.3.0",
"webpack": "^3.12.0"
},
"license": "MIT"
}