-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
75 lines (75 loc) · 2.01 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
{
"name": "@maticnetwork/matic-cli",
"version": "0.10.0",
"description": "Testing toolkit to setup, manage and operate Polygon networks",
"type": "module",
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prettier:check": "prettier --check './**/*.*' --ignore-unknown",
"prettier:fix": "prettier --write './**/*.*' --ignore-unknown",
"lint:check": "npx eslint './**/**.js'",
"lint:fix": "npx eslint './**/**.js' --fix"
},
"keywords": [
"cli",
"matic-cli",
"express-cli",
"testing-toolkit"
],
"author": "Polygon PoS v1",
"license": "MIT",
"dependencies": {
"@ethereumjs/tx": "^4.1.1",
"@ethereumjs/util": "^8.0.5",
"@truffle/hdwallet-provider": "^2.1.4",
"aws-sdk": "^2.1252.0",
"axios": "^1.3.4",
"babel-eslint": "^10.1.0",
"big-integer": "^1.6.51",
"boxen": "^7.0.0",
"chalk": "^2.4.2",
"commander": "^5.0.0",
"covgen": "^3.1.0",
"dotenv": "^16.0.3",
"envalid": "^7.3.1",
"eth-crypto": "^2.4.0",
"ethereumjs-util": "^7.1.5",
"ethereumjs-wallet": "^1.0.2",
"execa": "^1.0.0",
"fs-extra": "^10.1.0",
"ganache": "7.9.1",
"inquirer": "^6.2.2",
"js-yaml": "^4.1.0",
"listr2": "^4.0.5",
"lodash": "^4.17.21",
"node-fetch": "^2.6.7",
"nunjucks": "^3.2.1",
"pkg-install": "^1.0.0",
"shelljs": "^0.8.5",
"truffle-privatekey-provider": "^1.5.0",
"web3": "^1.8.2",
"yaml": "^1.10.2"
},
"files": [
"bin/",
"src/",
"templates/"
],
"devDependencies": {
"@babel/core": "^7.23.5",
"@babel/eslint-parser": "^7.23.3",
"@babel/plugin-syntax-import-assertions": "^7.23.3",
"@babel/preset-env": "^7.23.5",
"eslint": "^8.29.0",
"eslint-config-semistandard": "^17.0.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.6.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"prettier": "2.8.1"
}
}