-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.5 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
{
"name": "blocktron-cli",
"version": "1.0.0",
"private": false,
"description": "A CLI tool to generate a custom Blocktron instance.",
"main": "dist/app.bundle.js",
"preferGlobal": true,
"bin": {
"blocktron": "./dist/app.bundle.js"
},
"scripts": {
"build-prod": "webpack --config=./script/webpack.config.js --env.production",
"build-dev": "webpack --config=./script/webpack.config.js --watch",
"start": "node ./dist/app.bundle.js",
"dev": "node ./dist/app.bundle.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Blocktron-Project/blocktron-cli.git"
},
"keywords": [
"Blocktron",
"blocktron-lib",
"blocktron-node",
"blocktron-explorer",
"javascript",
"nodejs",
"blockchain",
"dapps",
"cryptocurrency"
],
"author": "Sandeep Vattapparambil",
"license": "MIT",
"bugs": {
"url": "https://github.com/Blocktron-Project/blocktron-cli/issues"
},
"homepage": "https://github.com/Blocktron-Project/blocktron-cli#readme",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"webpack": "^4.16.5",
"webpack-cli": "^3.1.0",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"async": "^2.6.1",
"chalk": "^2.4.1",
"figlet": "^1.2.0",
"replace-in-file": "^3.4.0"
}
}