This repository was archived by the owner on Feb 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 672
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.88 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.88 KB
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
{
"name": "@ganache/cli",
"publishConfig": {
"access": "public"
},
"version": "0.8.1",
"description": "",
"author": "David Murdoch",
"homepage": "https://github.com/trufflesuite/ganache/tree/develop/src/packages/cli#readme",
"license": "MIT",
"main": "lib/index.js",
"typings": "typings",
"source": "index.ts",
"bin": {
"ganache": "./lib/src/cli.js",
"ganache-cli": "./lib/src/cli.js"
},
"directories": {
"lib": "lib",
"test": "tests"
},
"files": [
"lib",
"typings"
],
"repository": {
"type": "git",
"url": "https://github.com/trufflesuite/ganache.git",
"directory": "src/packages/cli"
},
"scripts": {
"tsc": "tsc --build",
"test": "nyc --reporter lcov npm run mocha",
"mocha": "cross-env TS_NODE_FILES=true mocha --exit --check-leaks --throw-deprecation --trace-warnings --require ts-node/register 'tests/**/*.test.ts'",
"start": "cross-env node --require ts-node/register --inspect src/cli.ts"
},
"bugs": {
"url": "https://github.com/trufflesuite/ganache/issues"
},
"keywords": [
"ganache",
"ganache-cli",
"ethereum",
"evm",
"blockchain",
"smart contracts",
"dapps",
"solidity",
"vyper",
"fe",
"web3",
"tooling",
"truffle"
],
"devDependencies": {
"@ganache/ethereum": "0.8.1",
"@ganache/filecoin": "0.7.0",
"@types/mocha": "9.0.0",
"cross-env": "7.0.3",
"mocha": "9.1.3",
"ts-node": "10.9.1",
"typescript": "4.7.4",
"superagent": "6.1.0",
"nyc": "15.1.0"
},
"dependencies": {
"@ethereumjs/util": "8.0.2",
"@ganache/colors": "0.4.0",
"@ganache/core": "0.8.1",
"@ganache/flavors": "0.8.1",
"@ganache/options": "0.7.0",
"@ganache/utils": "0.7.0",
"@trufflesuite/ps-list": "0.0.3",
"@types/node": "17.0.0",
"chalk": "4.1.0",
"marked-terminal": "4.1.0",
"cli-table": "0.3.11"
}
}