-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.42 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.42 KB
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
{
"name": "@roundabout-team/etherless-cli",
"version": "2.0.1",
"description": "Module to which the developer interacts with etherless.",
"scripts": {
"build": "tsc",
"test": "jest --coverage --verbose --detectOpenHandles",
"lint": "eslint src/*/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Rounadbout/etherless-cli.git"
},
"author": "",
"license": "MIT",
"main": "./build/index.js",
"bin": {
"etherless": "./build/index.js"
},
"bugs": {
"url": "https://github.com/Rounadbout/etherless-cli/issues"
},
"homepage": "https://github.com/Rounadbout/etherless-cli#readme",
"dependencies": {
"@types/configstore": "^4.0.0",
"@types/inquirer": "^6.5.0",
"@types/node": "^13.13.12",
"@types/table": "^5.0.0",
"@types/yargs": "^15.0.4",
"acorn": "^7.2.0",
"chalk": "^4.1.0",
"configstore": "^5.0.1",
"dotenv": "^8.2.0",
"ethers": "^4.0.47",
"fs": "0.0.1-security",
"inquirer": "^7.1.0",
"ipfs-mini": "^1.1.5",
"table": "^5.4.6",
"ts-node": "^8.9.1",
"typescript": "^3.9.5",
"yargs": "^15.3.1"
},
"devDependencies": {
"@types/jest": "^25.2.3",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"jest": "^26.0.1",
"ts-jest": "^26.1.0"
}
}