-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
42 lines (42 loc) · 1.11 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
{
"name": "@openst/faucet",
"version": "0.1.0",
"description": "Mosaic faucet for base coins and EIP20 tokens",
"main": "index.js",
"scripts": {
"lint": "eslint src -c .eslintrc.json --ext ts",
"start": "ts-node ./src/bin/faucet.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OpenST/faucet.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/OpenST/faucet/issues"
},
"homepage": "https://github.com/OpenST/faucet#readme",
"dependencies": {
"bn.js": "4.11.8",
"commander": "2.19.0",
"config": "3.0.1",
"http-status-codes": "1.3.2",
"inquirer": "6.2.2",
"openzeppelin-solidity": "2.2.0",
"ts-node": "8.0.3",
"typescript": "3.3.3333",
"web3": "1.0.0-beta.52",
"winston": "3.2.1"
},
"devDependencies": {
"@types/node": "11.11.3",
"@types/web3": "1.0.18",
"@typescript-eslint/eslint-plugin": "1.7.0",
"@typescript-eslint/parser": "1.4.2",
"eslint": "5.10.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-json": "1.4.0"
}
}