forked from 5afe/contract-proxy-kit
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 2.32 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "contract-proxy-kit",
"version": "1.1.1",
"description": "Enable batched transactions and contract account interactions using a unique deterministic Gnosis Safe.",
"main": "src/index.ts",
"scripts": {
"generate-types": "typechain --target=truffle-v5 './build/contracts/*.json'",
"postinstall": "truffle compile && yarn generate-types",
"migrate": "tsc -p ./tsconfig.migrate.json --outDir ./migrations && truffle migrate --network local",
"test-ts": "nyc mocha -t 5000 -r ts-node/register ./test/contract-proxy-kit.ts --exit",
"test": "yarn migrate && yarn test-ts",
"test-rpc": "run-with-testrpc --noVMErrorsOnRPCResponse 'yarn migrate && yarn test-ts'",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"lint:check": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "yarn lint:check --fix",
"typecheck": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gnosis/contract-proxy-kit.git"
},
"keywords": [
"gnosis",
"safe",
"proxy",
"sdk",
"ethereum",
"smart",
"contract",
"batch",
"transaction",
"wallet"
],
"author": "Gnosis (https://gnosis.io)",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/gnosis/contract-proxy-kit/issues"
},
"homepage": "https://github.com/gnosis/contract-proxy-kit#readme",
"devDependencies": {
"@gnosis.pm/conditional-tokens-contracts": "^0.5.4",
"@gnosis.pm/safe-contracts": "^1.1.1",
"@truffle/contract": "^4.2.8",
"@truffle/hdwallet-provider": "^1.0.35",
"@typechain/truffle-v5": "^2.0.2",
"@types/chai": "^4.2.11",
"@types/chai-as-promised": "^7.1.2",
"@types/mocha": "^7.0.2",
"@typescript-eslint/eslint-plugin": "^3.1.0",
"@typescript-eslint/parser": "^3.1.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.1.0",
"dotenv": "^8.2.0",
"eslint": "^7.2.0",
"ethers-4": "npm:ethers@^4.0.45",
"ganache-cli": "^6.9.1",
"geth-dev-assistant": "^0.1.4",
"nyc": "^15.1.0",
"run-with-testrpc": "^0.3.1",
"should": "^13.2.3",
"truffle": "^5.1.29",
"truffle-typings": "^1.0.8",
"ts-node": "^8.10.2",
"typechain": "^2.0.0",
"typescript": "^3.9.5",
"wait-port": "^0.2.9",
"web3-1-2": "npm:web3@^1.2.6",
"web3-2-alpha": "npm:web3@^2.0.0-alpha.1"
}
}