forked from eastata/erc1820-registry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 805 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
{
"name": "erc1820-registry",
"version": "0.0.1",
"description": "A truffle project to deploy an ERC1820 Registry for Permissioned Chains.",
"keywords": [
"ethereum",
"erc1820",
"solidity",
"smart",
"contract",
"blockchain"
],
"repository": {
"type": "git",
"url": "https://github.com/clearmatics/erc1820-registry.git"
},
"files": [
"build",
"contracts"
],
"homepage": "https://github.com/clearmatics/erc1820-registry",
"author": "Clearmatics <[email protected]>",
"license": "LGPL-3.0",
"dependencies": {
"truffle": "^5.1.23",
"truffle-privatekey-provider": "^1.3.0"
},
"scripts": {
"compile": "truffle compile",
"deploy": "truffle deploy --network development"
},
"engines": {
"node": "14.5.0"
}
}