-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 856 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 856 Bytes
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
{
"name": "solidity_playground",
"version": "1.0.0",
"description": "Learning how to make smart contracts in Solidity",
"dependencies": {
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^2.0.5",
"prettier-plugin-solidity": "^1.0.0-alpha.54",
"solhint": "^3.0.0",
"solhint-plugin-prettier": "0.0.5"
},
"scripts": {
"lint:sol": "solhint **/*.sol",
"lint:js": "eslint . --fix --ext .js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vnavascues/solidity_playground.git"
},
"author": "Victor Navascues",
"license": "CC-BY-SA-4.0",
"bugs": {
"url": "https://github.com/vnavascues/solidity_playground/issues"
},
"homepage": "https://github.com/vnavascues/solidity_playground#readme",
"devDependencies": {}
}