-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpackage.json
91 lines (91 loc) · 2.92 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "contract-proxy-kit",
"version": "2.2.0-alpha.3",
"description": "Enable batched transactions and contract account interactions using a unique deterministic Gnosis Safe.",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"scripts": {
"generate-types": "typechain --target=truffle-v5 './build/contracts/*.json'",
"migrate": "tsc -p ./tsconfig.migrate.json --outDir ./migrations && truffle migrate --network local",
"test-ts": "TS_NODE_PROJECT='./tsconfig.cjs.json' nyc mocha -t 20000 -r ts-node/register -r jsdom-global/register ./test/contract-proxy-kit.ts --exit",
"test": "yarn generate-types && yarn migrate && yarn test-ts",
"test-rpc": "run-with-testrpc --noVMErrorsOnRPCResponse 'yarn test'",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"format": "prettier-eslint --write $PWD/'src/**/*.{js,ts,json}' $PWD/'test/**/*.{js,ts,json}'",
"build": "tsc && tsc -p tsconfig.cjs.json",
"prepack": "yarn build"
},
"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"
},
"files": [
"contracts",
"lib",
"src"
],
"homepage": "https://github.com/gnosis/contract-proxy-kit#readme",
"dependencies": {
"@gnosis.pm/safe-apps-sdk": "^0.4.2",
"@truffle/contract": "^4.2.26",
"@types/uuid": "^8.3.0",
"bignumber.js": "^9.0.1",
"node-fetch": "^2.6.1",
"uuid": "^8.3.1"
},
"devDependencies": {
"@gnosis.pm/conditional-tokens-contracts": "^0.5.4",
"@gnosis.pm/safe-contracts": "1.2.0",
"@truffle/hdwallet-provider": "^1.1.1",
"@typechain/truffle-v5": "^2.0.2",
"@types/chai": "^4.2.14",
"@types/chai-as-promised": "^7.1.3",
"@types/mocha": "^8.0.3",
"@types/node-fetch": "^2.5.7",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.1.0",
"dotenv": "^8.2.0",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.13.0",
"eslint-plugin-prettier": "^3.1.4",
"ethers-4": "npm:ethers@^4.0.45",
"ethers-5": "npm:ethers@^5.0.18",
"ganache-cli": "^6.12.0",
"geth-dev-assistant": "^0.1.7",
"jsdom": "^16.4.0",
"jsdom-global": "^3.0.2",
"nyc": "^15.1.0",
"prettier": "^2.1.2",
"prettier-eslint-cli": "^5.0.0",
"run-with-testrpc": "^0.3.1",
"should": "^13.2.3",
"truffle": "^5.1.49",
"truffle-typings": "^1.0.8",
"ts-node": "^9.0.0",
"typechain": "^3.0.0",
"typescript": "^4.0.3",
"wait-port": "^0.2.9",
"web3-1-3": "npm:web3@^1.3.0",
"web3-2-alpha": "npm:web3@^2.0.0-alpha.1"
}
}