forked from uport-project/ethr-did-registry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.25 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
{
"name": "ethr-did-registry",
"version": "0.0.3",
"description": "A repository storing keys and other data about Ethereum Decentralized Identifiers (DIDs)",
"main": "build/contracts/EthereumDIDRegistry.json",
"directories": {
"test": "test"
},
"dependencies": {},
"devDependencies": {
"ethereumjs-tx": "^1.3.4",
"ethereumjs-util": "^5.1.5",
"ganache-cli": "^6.0.3",
"js-sha3": "^0.7.0",
"ls": "^0.2.1",
"solhint": "^1.1.10",
"truffle": "^4.1.6",
"truffle-hdwallet-provider": "^1.0.6"
},
"scripts": {
"test": "./node_modules/.bin/truffle test",
"lint": "./node_modules/.bin/solhint contracts/EthereumDIDRegistry.sol",
"_deploy": "./node_modules/.bin/truffle migrate --network ",
"deploy-mainnet": "npm run _deploy mainnet",
"deploy-infuranet": "npm run _deploy infuranet",
"deploy-ropsten": "npm run _deploy ropsten",
"deploy-rinkeby": "npm run _deploy rinkeby",
"deploy-kovan": "npm run _deploy kovan",
"deploy-local": "npm run _deploy local",
"deploy-test": "npm run _deploy test"
},
"repository": {
"type": "git",
"url": "https://github.com/uport-project/ethr-did-registry"
},
"author": "Pelle Braendgaard <[email protected]>",
"license": "Apache-2.0"
}