-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
103 lines (103 loc) · 2.8 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "kyber-pool-master-proxy-contract",
"version": "0.0.1",
"description": "",
"scripts": {
"compile:contracts": "truffle compile",
"build": "npm run compile:contracts",
"pretest": "NODE_ENV=test npm run build",
"test:stress": "NODE_ENV=test scripts/test.sh",
"test": "NODE_ENV=test truffle test",
"coverage": "NODE_ENV=test truffle run coverage",
"lint": "npm run lint:js && npm run lint:sol",
"lint:js": "eslint .",
"lint:js:fix": "eslint . --fix",
"lint:sol": "solhint --max-warnings 0 \"contracts/**/*.sol\"",
"lint:sol:prettier:fix": "prettier --write \"contracts/**/*.sol\"",
"flatten": "bash scripts/flatten.sh",
"compile": "truffle compile",
"migrate": "truffle migrate",
"migrate:ropsten": "npm run migrate -- --network ropsten",
"migrate:mainnet": "npm run migrate -- --network mainnet",
"deploy:ropsten": "npm run compile && npm run migrate:ropsten",
"deploy:mainnet": "npm run compile && npm run migrate:mainnet"
},
"repository": {
"type": "git",
"url": "git+https://github.com/protofire/kyber-pool-master-proxy-contract.git"
},
"keywords": [
"Kyber",
"PoolMaster"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/protofire/kyber-pool-master-proxy-contract/issues"
},
"homepage": "https://github.com/protofire/kyber-pool-master-proxy-contract#readme",
"devDependencies": {
"@openzeppelin/contracts": "^3.0.1",
"@openzeppelin/test-helpers": "^0.5.5",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-bn": "^0.2.1",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.3",
"ganache-cli": "^6.9.1",
"husky": "^4.2.5",
"lint-staged": "^10.1.7",
"mathjs": "^6.6.4",
"prettier": "^2.0.5",
"prettier-plugin-solidity": "^1.0.0-alpha.54",
"solhint": "^3.0.0",
"solhint-plugin-prettier": "0.0.4",
"solidity-coverage": "^0.7.5",
"truffle": "^5.1.23",
"truffle-assertions": "^0.9.2",
"truffle-flattener": "^1.4.4",
"truffle-hdwallet-provider": "^1.0.17",
"truffle-hdwallet-provider-privkey": "^0.3.0",
"web3": "^1.2.4",
"web3-utils": "^1.2.4"
},
"prettier": {
"singleQuote": true,
"overrides": [
{
"files": "*.sol",
"options": {
"singleQuote": false
}
}
]
},
"eslintConfig": {
"extends": [
"plugin:prettier/recommended"
],
"env": {
"es6": true
},
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.sol": [
"prettier --write"
],
"*.js": [
"eslint --fix"
]
}
}