-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 923 Bytes
/
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
{
"name": "smart-wallet",
"version": "1.0.0",
"description": "An ethereum based smart contract that splits the amount sent to it.",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"scripts": {
"dev": "lite-server",
"test": "truffle test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/facebook-developer-circle-delhi/Smart-Wallet.git"
},
"keywords": [
"smart",
"contract",
"blockchain",
"ethereum",
"smartwallet"
],
"author": "Shubhamoy Chakrabarty <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/facebook-developer-circle-delhi/Smart-Wallet/issues"
},
"homepage": "https://github.com/facebook-developer-circle-delhi/Smart-Wallet#readme",
"dependencies": {
"openzeppelin-solidity": "^2.0.0",
"solium": "^1.1.8"
},
"devDependencies": {
"lite-server": "^2.4.0"
}
}