-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.51 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.51 KB
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.10",
"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": {
"docgen": "solidoc2 ./solidity ./docs",
"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 \"solidity/contracts/**/*.sol\"",
"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",
"prettier": "prettier --write {*/**/,*/**/**/,*/**/**/**/}*.{js,sol}"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-ganache": "^2.0.0",
"@nomiclabs/hardhat-truffle5": "^2.0.0",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/test-helpers": "^0.5.6",
"@truffle/contract": "^4.2.14",
"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",
"coveralls": "^3.1.0",
"decimal.js": "10.2.0",
"dirty-chai": "^2.0.1",
"eslint": "^7.5.0",
"eslint-config-prettier": "^8.1.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.13.2",
"hardhat": "^2.2.1",
"hardhat-contract-sizer": "^2.0.3",
"hardhat-deploy": "^0.7.5",
"hardhat-docgen": "^1.1.1",
"hardhat-log-remover": "^2.0.1",
"husky": "^4.2.5",
"prettier": "^2.2.1",
"prettier-plugin-solidity": "^1.0.0-beta.2",
"snyk": "^1.369.0",
"solhint": "^3.1.0",
"solidity-coverage": "^0.7.9",
"truffle": "5.1.49",
"truffle-flattener": "1.4.4",
"web3": "1.2.11"
},
"snyk": true,
"dependencies": {
"@truffle/hdwallet-provider": "^1.2.6"
}
}