forked from steemit/steem-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.93 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 2.93 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@steemit/steem-js",
"version": "0.8.0",
"description": "JavaScript library for the Steem blockchain",
"main": "lib/index.js",
"scripts": {
"build": "npm run build-browser && npm run build-node",
"build-browser": "cross-env NODE_ENV=production rimraf dist && webpack",
"build-node": "babel src --out-dir lib --plugins=@babel/plugin-transform-modules-commonjs",
"prepare": "npm run build",
"test": "babel-node --presets @babel/preset-env node_modules/mocha/bin/mocha test/*.js",
"test-auth": "npm test -- --grep 'steem.auth'",
"lint": "eslint src",
"prepublish": "npm run build"
},
"browser": {
"ws": false,
"crypto": false
},
"repository": {
"type": "git",
"url": "git+https://github.com/steemit/steem-js.git"
},
"keywords": [
"steem",
"steemit",
"blockchain",
"steemjs"
],
"author": "Fabien (https://github.com/bonustrack)",
"license": "MIT",
"bugs": {
"url": "https://github.com/steemit/steem-js/issues"
},
"homepage": "https://github.com/steemit/steem-js#readme",
"dependencies": {
"assert": "^1.5.0",
"babel-polyfill": "^6.26.0",
"bigi": "^1.4.2",
"bluebird": "^3.7.2",
"browserify-aes": "^1.2.0",
"bs58": "^4.0.1",
"bytebuffer": "^5.0.1",
"create-hash": "^1.2.0",
"create-hmac": "^1.1.7",
"cross-fetch": "^3.0.6",
"detect-node": "^2.0.4",
"ecurve": "^1.0.6",
"https-browserify": "^1.0.0",
"is-hex": "^1.1.3",
"isomorphic-ws": "^4.0.1",
"lodash": "^4.17.15",
"noble-secp256k1": "^1.0.3",
"os-browserify": "^0.3.0",
"path-browserify": "^1.0.1",
"randombytes": "^2.1.0",
"retry": "^0.12.0",
"ripemd160": "^2.0.2",
"safe-buffer": "^5.2.1",
"secp256k1": "^3.8.0",
"secure-random": "^1.1.2",
"should": "^13.2.3",
"stream-browserify": "^2.0.2",
"stream-http": "^3.1.1",
"util": "^0.12.3",
"ws": "^7.4.6"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/node": "^7.26.0",
"@babel/plugin-transform-modules-commonjs": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/register": "^7.9.0",
"ajv": "^6.12.2",
"ajv-keywords": "^3.4.1",
"babel-loader": "^8.1.0",
"braces": "^3.0.3",
"buffer": "^5.6.0",
"core-js": "^2.6.11",
"cross-env": "^7.0.2",
"crypto-browserify": "^3.12.0",
"eslint": "^6.8.0",
"mocha": "^10.2.0",
"process": "^0.11.10",
"rimraf": "^2.7.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-visualizer-plugin": "^0.1.11"
},
"resolutions": {
"json5": "^1.0.2",
"braces": "^3.0.3",
"micromatch": "^4.0.5",
"glob-parent": "^5.1.2"
},
"contributors": [
"Hightouch (https://github.com/hightouch67)",
"Fabien (https://github.com/bonustrack)",
"James Calfee (https://github.com/jcalfee)",
"Nilesh Suthar (https://github.com/nil1511)",
"Pedro Tacla Yamada (https://github.com/yamadapc)"
]
}