forked from ninabarbakadze/mento-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.79 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
{
"name": "@mentolabs/core",
"description": "The core smart contracts of the Mento protocol",
"license": "Apache-2.0",
"version": "1.0.3",
"files": [
"dist",
"contracts",
"img"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": {
"name": "Mento Labs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mento-protocol/mento-core"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@ethersproject/abi": "^5.0.0",
"@ethersproject/bytes": "^5.0.0",
"@ethersproject/providers": "^5.0.0",
"@typechain/ethers-v5": "^10.1.1",
"@types/node": "18.11.9",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"ethers": "^5.1.3",
"husky": "^8.0.0",
"lint-staged": "^13.0.3",
"pinst": "^3.0.0",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0-dev.22",
"solhint": "^3.3.7",
"solhint-plugin-prettier": "^0.0.5",
"typechain": "^8.1.1",
"typescript": "^4.9.3"
},
"keywords": [
"mento",
"celo",
"solidity"
],
"private": false,
"scripts": {
"lint": "yarn prettier && yarn solhint",
"lint:check": "yarn prettier:check && yarn solhint:check",
"postinstall": "husky install",
"prepack": "pinst --disable",
"postpack": "pinst --enable",
"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\" \"{contracts,test,script}/**/*.sol\"",
"solhint:check": "solhint --config \"./.solhint.json\" \"{contracts,test,script}/**/*.sol\" -q",
"generatetypes": "node generateTypes.js",
"build": "tsc"
}
}