-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.26 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
{
"name": "advisor-contracts",
"version": "1.0.0",
"description": "Newfi contracts for advisors",
"main": "index.js",
"directories": {
"test": "test"
},
"dependencies": {
"@openzeppelin/cli": "^2.8.2",
"@openzeppelin/contracts": "^3.2.0",
"@openzeppelin/contracts-ethereum-package": "^3.0.0",
"truffle": "^5.1.49"
},
"devDependencies": {
"@openzeppelin/test-environment": "^0.1.5",
"@openzeppelin/test-helpers": "^0.5.7",
"ganache-time-traveler": "^1.0.15",
"husky": "^4.3.0",
"jest": "^26.5.2",
"lint-staged": "^10.4.2",
"prettier": "^2.1.2",
"prettier-plugin-solidity": "^1.0.0-alpha.59"
},
"scripts": {
"test": "oz compile && jest",
"lint": "prettier --single-quote --trailing-comma=es5 --write **/*.{js,sol,json,md}"
},
"repository": {
"type": "git",
"url": "git+https://github.com/newfi-labs/advisor-contracts.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/newfi-labs/advisor-contracts/issues"
},
"homepage": "https://github.com/newfi-labs/advisor-contracts#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,md,sol}": "prettier --single-quote --trailing-comma=es5 --write"
}
}