-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
34 lines (34 loc) · 987 Bytes
/
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
{
"name": "steemmultisig",
"version": "1.0.0",
"description": "Steem Multiple Authority Manager - A basic interface for doing multiple signature/authority transactions on Steem Blockchain",
"main": "index.js",
"scripts": {
"build": "browserify src/app.js | terser -c -m > js/app.js",
"watch": "watchify src/app.js -o js/app.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"dsteem": "0.11.2",
"jquery": "^3.3.1",
"regenerator-runtime": "^0.13.1",
"steem": "^0.7.4"
},
"devDependencies": {
"browserify": "^16.2.3",
"eslint": "^5.12.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"terser": "^3.14.1",
"watchify": "^3.11.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CodeBull/SteemMultisig.git"
},
"bugs": {
"url": "https://github.com/CodeBull/SteemMultisig/issues"
},
"homepage": "https://github.com/CodeBull/SteemMultisig#readme"
}