forked from PaulRBerg/prb-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.63 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
{
"name": "@prb/contracts",
"description": "Off-the-shelf Solidity smart contracts",
"version": "4.1.1",
"author": {
"name": "Paul Razvan Berg",
"url": "https://github.com/paulrberg"
},
"bugs": {
"url": "https://github.com/paulrberg/prb-contracts/issues"
},
"dependencies": {
"@prb/math": "^2.5.0"
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"prettier": "^2.6.2",
"prettier-plugin-solidity": "^1.0.0-dev.21",
"solhint": "^3.3.7",
"solhint-plugin-prettier": "^0.0.5"
},
"files": [
"**/*.sol",
"CHANGELOG.md"
],
"homepage": "https://github.com/paulrberg/prb-contracts#readme",
"keywords": [
"blockchain",
"erc20",
"ethereum",
"library",
"smart-contracts",
"solidity"
],
"license": "Unlicense",
"packageManager": "yarn@3.2.0",
"peerDependencies": {
"@prb/math": "2.x"
},
"publishConfig": {
"access": "public"
},
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/paulrberg/prb-contracts"
},
"scripts": {
"lint": "yarn solhint && yarn prettier:check",
"lint:check": "yarn prettier:check && yarn solhint:check",
"postinstall": "husky install",
"prettier": "prettier --config \"./.prettierrc.yml\" --write \"**/*.{json,md,sol,yml}\"",
"prettier:check": "prettier --config \"./.prettierrc.yml\" --check \"**/*.{json,md,sol,yml}\"",
"solhint": "solhint --config ./.solhint.json \"{src,test}/**/*.sol\""
}
}