forked from steemit/steem-js
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.47 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.47 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
{
"name": "@scorum/scorum-js",
"version": "2.16.0",
"description": "Scorum.js the JavaScript API for Scorum blockchain",
"main": "lib/index.js",
"scripts": {
"test": "eslint --quiet src test; mocha -t 40000 --require babel-polyfill --require babel-register",
"test-auth": "npm test -- --grep 'scorum.auth'",
"test-op": "npm test -- --grep 'scorum.op'",
"lint": "eslint --ignore-path ./.eslintignore -c ./.eslintrc .",
"build": "npm run build-browser && npm run build-node",
"build-browser": "rm -rf dist && NODE_ENV=production node ./node_modules/webpack/bin/webpack.js && 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"
},
"browser": {
"ws": false,
"crypto": false
},
"engines": {
"node": ">=6.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scorum/scorum-js.git"
},
"keywords": [
"scorum",
"blockchain",
"scorumjs"
],
"author": "Fabien (https://github.com/bonustrack)",
"contributors": [
{
"name": "Andrew Avdeev",
"email": "andrewww.avdeev@gmail.com"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/scorum/scorum-js/issues"
},
"homepage": "https://github.com/scorum/scorum-js#readme",
"dependencies": {
"@steemit/rpc-auth": "^1.1.0",
"bigi": "^1.4.2",
"bluebird": "^3.4.6",
"browserify-aes": "^1.0.6",
"bs58": "^4.0.0",
"buffer": "^5.0.6",
"bytebuffer": "^5.0.1",
"create-hash": "^1.1.2",
"create-hmac": "^1.1.4",
"cross-env": "^5.0.0",
"cross-fetch": "^1.1.1",
"debug": "^2.6.8",
"detect-node": "^2.0.3",
"ecurve": "^1.0.5",
"lodash": "^4.16.4",
"secure-random": "^1.1.1",
"ws": "^3.3.2"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.5",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-es2017": "^6.16.0",
"babel-register": "^6.14.0",
"eslint": "^4.5.0",
"eslint-config-airbnb-base": "^11.3.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-prettier": "^2.2.0",
"eslint-plugin-react": "^6.2.1",
"json-loader": "^0.5.4",
"mocha": "^3.0.2",
"mocha-make-stub": "^2.3.2",
"prettier": "^1.5.3",
"should": "^11.1.0",
"webpack": "^1.13.2",
"webpack-visualizer-plugin": "^0.1.5"
},
"volta": {
"node": "8.17.0"
}
}