forked from sablier-labs/v1-smooth-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 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
{
"name": "@sablier/smooth-contracts",
"description": "Bare-bones implementation of the Sablier protocol",
"version": "1.0.0",
"author": {
"name": "Sablier",
"email": "[email protected]",
"url": "https://sablier.finance"
},
"bugs": {
"url": "https://github.com/sablierhq/sablier-smooth-contracts/issues"
},
"dependencies": {
"@openzeppelin/contracts-ethereum-package": "2.2.3",
"@openzeppelin/upgrades": "2.5.0"
},
"devDependencies": {
"@commitlint/cli": "7.5.2",
"@commitlint/config-conventional": "7.5.0",
"@commitlint/config-lerna-scopes": "7.5.1",
"@truffle/hdwallet-provider": "^1.0.32",
"commitizen": "^3.1.2",
"cz-conventional-changelog": "^2.1.0",
"dotenv": "^8.2.0",
"prettier": "^1.19.1",
"prettier-plugin-solidity": "^1.0.0-alpha.42",
"shx": "^0.3.2",
"solc": "0.5.11",
"truffle": "5.0.37"
},
"files": [
"/contracts"
],
"homepage": "https://github.com/sablierhq/sablier-smooth-contracts#readme",
"license": "LGPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/sablierhq/sablier-smooth-contracts.git"
},
"scripts": {
"clean": "shx rm -rf ./build",
"lint": "solhint --config ./.solhint.json --max-warnings 0 'contracts/**/*.sol'"
}
}