-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.04 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
{
"name": "trickle-dapp-backend",
"version": "0.0.1",
"description": "Triccle DAPP backend",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DeRain/trickle-dapp-backend.git"
},
"scripts": {
"build-contracts": "sol-merger \"./contracts/*.sol\" ./build/merged-contracts",
"lint": "solhint \"./contracts/*.sol\""
},
"keywords": [
"solidity",
"ethereum",
"payments"
],
"author": "Kirill Beresnev <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/DeRain/trickle-dapp-backend/issues"
},
"homepage": "https://github.com/DeRain/trickle-dapp-backend#readme",
"dependencies": {
"openzeppelin-solidity": "^2.2.0",
"truffle-privatekey-provider": "^1.1.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-bn": "^0.1.1",
"moment": "^2.24.0",
"openzeppelin-test-helpers": "^0.3.2",
"sol-merger": "^0.1.3",
"solhint": "^2.0.0"
}
}