forked from aragon/signature-registry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.02 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
{
"name": "signature-registry",
"version": "0.1.0",
"description": "",
"author": "Parity Technologies <admin@parity.io>",
"homepage": "https://github.com/parity-contracts/signature-registry",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/parity-contracts/signature-registry.git"
},
"bugs": {
"url": "https://github.com/parity-contracts/signature-registry/issues"
},
"scripts": {
"compile": "npx truffle compile",
"migrate": "npx truffle migrate",
"test": "npx truffle test --network test",
"coverage": "npx solidity-coverage",
"lint": "npx solium -d contracts/",
"ganache": "npx ganache-cli --port 7545",
"parity": "parity --chain dev --jsonrpc-port 7545 --jsonrpc-apis all"
},
"devDependencies": {
"@aragon/os": "^4.0.1",
"coveralls": "^3.0.0",
"ganache-cli": "^6.1.0",
"solidity-coverage": "^0.5.0",
"solium": "^1.1.6",
"truffle": "^4.1.5"
},
"dependencies": {
"@truffle/hdwallet-provider": "^1.4.0"
}
}