-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.17 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
{
"name": "xrtd-js",
"version": "1.0.1",
"main": "src/index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/vol4tim/xrtd-js.git"
},
"bin": {
"xrtd-js": "./dist/cli.js"
},
"scripts": {
"start": "node dist/index.js",
"build": "babel src -d dist --presets es2015,stage-2",
"local": "nodemon src/index.js --exec babel-node",
"local:cli": "babel-node src/cli.js",
"lint": "eslint src",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^10.0.1",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"eslint": "^5.6.1",
"eslint-plugin-babel": "^5.2.1",
"eslint-plugin-import": "^2.14.0",
"nodemon": "^1.18.4"
},
"dependencies": {
"base-58": "^0.0.1",
"bluebird": "^3.5.2",
"commander": "^2.19.0",
"ethereumjs-tx": "^1.3.7",
"ipfs-api": "^24.0.2",
"lodash": "^4.17.11",
"robonomics-js": "^0.2.9",
"web3": "^0.20.7",
"web3-eth-abi": "1.0.0-beta.36"
}
}