-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.24 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
57
58
59
60
61
62
63
{
"name": "consolechain",
"version": "0.1.8",
"description": "consolechain CLI",
"bin": {
"consolechain": "bin/consolechain"
},
"scripts": {
"format": "eslint \"**/*.{js,jsx}\" --fix && prettier \"**/*.{js,jsx,json}\" --write",
"test": "jest",
"watch": "jest --watch",
"snapupdate": "jest --updateSnapshot",
"coverage": "jest --coverage"
},
"files": [
"src",
"LICENSE",
"readme.md",
"docs",
"bin"
],
"keywords": [
"ethereum",
"chain",
"blockchain",
"smart-contrat",
"terminal",
"console",
"cli"
],
"repository": {
"type": "git",
"url": "https://github.com/vieiraricardo/consolechain.git"
},
"license": "MIT",
"dependencies": {
"chalk": "4.1.2",
"ethers": "^5.6.8",
"gluegun": "latest"
},
"devDependencies": {
"copyfiles": "^2.4.1",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^5.1.3",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0"
},
"jest": {
"testEnvironment": "node"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}