forked from SwipeWallet/Swipe-Network
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.24 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
{
"name": "staking-contract",
"version": "1.0.1",
"description": "SXP staking contract for Solidity",
"files": [
"/contracts/*.sol",
"/build/*.json"
],
"repository": {
"type": "git",
"url": "https://github.com/SwipeWallet/staking-contract.git"
},
"keywords": [
"swipe",
"sxp",
"staking",
"solidity",
"ethereum",
"smart",
"contracts",
"security"
],
"author": "growlot <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/SwipeWallet/staking-contract/issues"
},
"homepage": "https://github.com/SwipeWallet/staking-contract",
"scripts": {
"build": "waffle waffle-config.json",
"test": "yarn build && mocha",
"lint:solidity": "solhint contracts/*.sol",
"prettier:solidity": "prettier --write contracts/*.sol"
},
"devDependencies": {
"chai": "^4.2.0",
"dotenv": "^8.0.0",
"ethereum-waffle": "^2.0.14",
"ethereumjs-abi": "^0.6.8",
"ethers": "^4.0.33",
"ethjs": "^0.4.0",
"mocha": "^6.2.0",
"openzeppelin-solidity": "2.3.0",
"path": "^0.12.7",
"prettier": "^1.18.2",
"prettier-plugin-solidity": "^1.0.0-alpha.27",
"solhint": "^2.1.2",
"solhint-plugin-prettier": "^0.0.3",
"uuid": "^3.3.2"
}
}