forked from bancorprotocol/contracts-solidity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.38 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
{
"name": "@bancor/contracts-solidity",
"version": "0.6.26",
"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",
"engines": {
"npm": "^3.0.0"
},
"scripts": {
"build": "truffle compile",
"test": "truffle test",
"coverage": "truffle run coverage",
"export": "node scripts/export.js",
"lint": "npm run lint:js && npm run 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",
"deploy": "node scripts/deploy-one.js",
"verify": "node scripts/verify-all.js",
"flatten": "node scripts/flatten.js",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"devDependencies": {
"@openzeppelin/test-helpers": "^0.5.6",
"@truffle/contract": "^4.2.14",
"@bancor/token-governance": "bancorprotocol/token-governance",
"bignumber.js": "^9.0.0",
"bn.js": "^5.1.2",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-bn": "^0.2.1",
"chai-string": "^1.5.0",
"decimal.js": "10.2.0",
"dirty-chai": "^2.0.1",
"eslint": "^7.5.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"ganache-core": "^2.10.2",
"husky": "^4.2.5",
"prettier": "^2.1.2",
"prettier-package-json": "^2.1.3",
"prettier-plugin-solidity": "^1.0.0-alpha.59",
"snyk": "^1.369.0",
"solhint": "^3.1.0",
"solidity-coverage": "^0.7.9",
"truffle": "5.1.36",
"truffle-flattener": "1.4.4",
"web3": "1.2.11"
},
"snyk": true
}