-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 973 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
33
34
35
36
37
38
39
40
41
{
"name": "@retherswap/lib",
"version": "1.0.2",
"description": "📖 Solidity libraries that are shared across Retherswap contracts",
"files": [
"contracts",
"!contracts/test"
],
"homepage": "https://retherswap.org",
"repository": {
"url": "https://github.com/Retherswap/lib",
"type": "git"
},
"bugs": {
"url": "https://github.com/Retherswap/lib/issues"
},
"engines": {
"node": ">=14"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"chai": "^4.2.0",
"ethereum-waffle": "^3.0.0",
"mocha": "^7.1.1",
"prettier": "^2.0.4",
"rimraf": "^3.0.2",
"solc": "^0.6.0",
"ts-node": "^8.9.0",
"typescript": "^3.8.3"
},
"scripts": {
"lint": "prettier ./test/*.ts --check",
"precompile": "rimraf ./build/",
"compile": "waffle",
"pretest": "yarn compile",
"test": "mocha",
"prepublishOnly": "yarn test"
},
"license": "GPL-3.0-or-later"
}