-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathpackage.json
38 lines (38 loc) · 915 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
35
36
37
38
{
"name": "steem-bot",
"version": "0.8.1",
"description": "Easy automation on top of Steem blockchain",
"main": "dist/loader.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rm -rf ./dist && mkdir dist && babel src --out-dir ./dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/p0o/steem-bot.git"
},
"keywords": [
"steem",
"steemit",
"blockchain",
"automation",
"bot"
],
"author": "p0o",
"license": "MIT",
"bugs": {
"url": "https://github.com/p0o/steem-bot/issues"
},
"homepage": "https://github.com/p0o/steem-bot#readme",
"dependencies": {
"bluebird": "^3.5.1",
"steem": "^0.7.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"babel-register": "^6.26.0"
}
}