forked from terminal-fi/celo-devchain
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 979 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 979 Bytes
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
{
"name": "@soloseng/celo-devchain",
"version": "5.0.0",
"description": "Ganache setup with core Celo contracts for local testing and development.",
"repository": {
"url": "https://github.com/soloseng/celo-devchain"
},
"scripts": {
"build": "tsc -p .",
"test": "ts-node src/run.ts --test",
"prepublishOnly": "yarn build && yarn test"
},
"bin": {
"celo-devchain": "./dist/run.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"author": "Zviad Metreveli",
"license": "MIT",
"devDependencies": {
"@types/node": "^14.14.6",
"@types/targz": "^1.0.0",
"@types/tmp": "^0.2.0",
"ts-node": "^10.0.0",
"typescript": "^4.0.5",
"web3-core-helpers": "^1.3.6"
},
"dependencies": {
"@celo/contractkit": "2.0.0",
"@celo/ganache-cli": "git+https://github.com/celo-org/ganache-cli.git#e933297",
"commander": "^6.2.0",
"node-fetch": "^2.6.1",
"targz": "^1.0.1",
"tmp": "^0.2.1"
}
}