forked from sudoswap/lssvm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 894 Bytes
/
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
{
"name": "dapptools-template",
"author": "Georgios Konstantopoulos",
"license": "Unlicense",
"version": "1.0.0",
"description": "A template for building dapptools projects",
"files": [
"*.sol"
],
"devDependencies": {
"copyfiles": "^2.4.1",
"husky": ">=6",
"lint-staged": ">=10",
"prettier": "^2.3.1",
"prettier-plugin-solidity": "^1.0.0-beta.13",
"rimraf": "^3.0.2",
"solmate": "6.6.2"
},
"dependencies": {},
"scripts": {
"prepublishOnly": "copyfiles -u 1 \"./src/**/*.sol\" --exclude \"./src/test/**/*.sol\" ./",
"prepublishLocal": "copyfiles -u 1 \"./src/**/*.sol\" ./dist",
"postpublish": "rimraf ./*.sol",
"prepack": "yarn prepublishLocal",
"postpack": "yarn postpublish",
"lint": "prettier --write 'src/**/*.sol'",
"prepare": "husky install"
},
"lint-staged": {
"*.{sol}": "prettier --write"
}
}