forked from VIZ-Blockchain/viz-js-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.67 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.67 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "viz-js-lib",
"version": "0.11.0",
"description": "viz.js the JavaScript Library with API support for VIZ blockchain",
"main": "lib/index.js",
"type": "module",
"scripts": {
"test": "mocha -t 20000",
"test-auth": "npm test -- --grep 'viz.auth'",
"build": "npm run build-browser && npm run build-node",
"build-browser": "rm -rf dist && NODE_ENV=production webpack && gzip -k -f ./dist/*.js && du -h ./dist/*",
"build-node": "mkdir -p ./lib && cp -r ./src/* ./lib/ && babel ./src --out-dir ./lib",
"prepare": "npm run build",
"disable-test-prepublish": "npm run test && npm run build",
"lint": "eslint --fix src test scripts webpack examples"
},
"browser": {
"ws": false,
"crypto": false
},
"repository": {
"type": "git",
"url": "git+https://github.com/VIZ-Blockchain/viz-js-lib.git"
},
"keywords": [
"viz",
"blockchain",
"viz-lib",
"viz-js-lib",
"viz-js",
"vizjs"
],
"author": "Fabien (https://github.com/bonustrack)",
"license": "MIT",
"bugs": {
"url": "https://github.com/VIZ-Blockchain/viz-js-lib/issues"
},
"homepage": "https://github.com/VIZ-Blockchain/viz-js-lib#readme",
"dependencies": {
"bigi": "^1.4.2",
"bluebird": "^3.7.2",
"browserify-aes": "^1.2.0",
"bs58": "^6.0.0",
"buffer": "^6.0.3",
"bytebuffer": "^5.0.1",
"create-hash": "^1.2.0",
"create-hmac": "^1.1.7",
"cross-env": "^10.1.0",
"cross-fetch": "^4.1.0",
"debug": "^4.4.3",
"detect-node": "^2.1.0",
"ecurve": "^1.0.6",
"lodash": "^4.17.21",
"secure-random": "^1.1.2",
"ws": "^8.18.3"
},
"devDependencies": {
"@babel/cli": "^7.28.3",
"@babel/core": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"@babel/register": "^7.28.3",
"@eslint/js": "^9.39.2",
"@stylistic/eslint-plugin": "^5.6.1",
"assert": "^2.1.0",
"babel-loader": "^10.0.0",
"crypto-browserify": "^3.12.1",
"eslint": "^9.39.2",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"mocha": "^11.7.5",
"mocha-make-stub": "^2.3.2",
"process": "^0.11.10",
"should": "^13.2.3",
"stream-browserify": "^3.0.0",
"terser-webpack-plugin": "^5.3.16",
"util": "^0.12.5",
"webpack": "^5.104.1",
"webpack-bundle-analyzer": "^5.1.0",
"webpack-cli": "^6.0.1"
},
"contributors": [
"Fabien (https://github.com/bonustrack)",
"James Calfee (https://github.com/jcalfee)",
"Nilesh Suthar (https://github.com/nil1511)",
"Pedro Tacla Yamada (https://github.com/yamadapc)",
"Anatoly Piskunov (https://github.com/on1x)",
"Vladimir Babin (https://github.com/chiliec)"
]
}