forked from bancorprotocol/contracts-solidity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.9 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@bancor/contracts-solidity",
"version": "0.6.39",
"description": "The solidity version of the Bancor smart contracts is composed of many different components that work together to create the Bancor Network deployment.",
"repository": {
"type": "git",
"url": "git+https://github.com/bancorprotocol/contracts-solidity.git"
},
"homepage": "https://github.com/bancorprotocol/contracts-solidity#readme",
"bugs": {
"url": "https://github.com/bancorprotocol/contracts-solidity/issues"
},
"author": "Yudi Levi",
"license": "SEE LICENSE IN LICENSE",
"files": [
"/solidity/contracts/**/*.sol",
"/solidity/build/*.abi",
"!/solidity/contracts/helpers"
],
"scripts": {
"build": "truffle compile",
"test": "yarn build && yarn qtest",
"qtest": "mocha",
"coverage": "node --max-old-space-size=4096 node_modules/truffle/build/cli.bundled.js run coverage",
"export": "node scripts/export.js",
"lint": "yarn lint:js && yarn lint:sol",
"lint:js": "eslint .",
"lint:sol": "solhint --max-warnings 0 \"solidity/contracts/**/*.sol\"",
"format": "prettier --check --write solidity/**/*.sol solidity/**/*.js scripts/**/*.js *.js --config .prettierrc",
"size": "yarn build && truffle run contract-size",
"deploy": "node scripts/deploy-one.js",
"verify": "node scripts/verify-all.js",
"flatten": "node scripts/flatten.js",
"snyk-protect": "snyk protect",
"prepare": "yarn build && yarn snyk-protect"
},
"dependencies": {
"@bancor/token-governance": "bancorprotocol/token-governance",
"@openzeppelin/contracts": "3.4.0"
},
"devDependencies": {
"@openzeppelin/test-environment": "^0.1.9",
"@openzeppelin/test-helpers": "^0.5.10",
"@truffle/contract": "^4.3.7",
"bignumber.js": "^9.0.1",
"bn.js": "^5.1.3",
"chai": "^4.3.0",
"chai-arrays": "^2.2.0",
"chai-as-promised": "^7.1.1",
"chai-bn": "^0.2.1",
"chai-string": "^1.5.0",
"decimal.js": "10.2.1",
"dirty-chai": "^2.0.1",
"eslint": "^7.20.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^4.1.0",
"husky": "^5.0.9",
"memdown": "^5.1.0",
"mocha": "^8.3.0",
"prettier": "^2.2.1",
"prettier-package-json": "^2.1.3",
"prettier-plugin-solidity": "^1.0.0-beta.5",
"snyk": "^1.564.0",
"solc": "0.6.12",
"solhint": "^3.3.2",
"solidity-coverage": "^0.7.14",
"truffle": "5.1.65",
"truffle-contract-size": "^2.0.1",
"truffle-flattener": "1.5.0",
"web3": "1.3.4",
"yargs": "^16.2.0"
},
"snyk": true
}