-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
64 lines (64 loc) · 2.39 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
{
"name": "evmcontracts",
"version": "1.0.3",
"description": "a simple cli tool to load a contract code up in your IDE instantly.",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"lint": "prettier --write ./src/**/*.ts",
"start": "npm run build && node ./dist/index.js",
"publish-cli": "tsc && npm publish --access public",
"gp": "cd ./projects && node ../dist/bin/generator-cli.js 0xc13eac3b4f9eed480045113b7af00f7b5655ece8",
"gp2": "cd ./projects && node ../dist/bin/generator-cli.js get eth 0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9",
"gp-hardhat": "cd ./projects && node ../dist/bin/generator-cli.js get 0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9 --hardhat",
"gp-hardhat2": "cd ./projects && node ../dist/bin/generator-cli.js get 0x4fe11bc316b6d7a345493127fbe298b95adaad85 --hardhat",
"gp-hardhat3": "cd ./projects && node ../dist/bin/generator-cli.js get 0xe592427a0aece92de3edee1f18e0157c05861564 --hardhat",
"gp-hardhat4": "cd ./projects && node ../dist/bin/generator-cli.js get eth 0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d --hardhat",
"gp-hardhat5": "cd ./projects && node ../dist/bin/generator-cli.js get eth 0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d --hardhat --output='../testme'",
"networks": "cd ./projects && node ../dist/bin/generator-cli.js networks",
"help-get": "cd ./projects && node ../dist/bin/generator-cli.js dd"
},
"bin": {
"evmc": "./dist/bin/generator-cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joshstevens19/evmc.git"
},
"author": "joshstevens19",
"license": "ISC",
"bugs": {
"url": "https://github.com/joshstevens19/evmc/issues"
},
"homepage": "https://github.com/joshstevens19/evmc#readme",
"dependencies": {
"colors": "^1.4.0",
"dotenv": "^8.2.0",
"ethers": "^5.7.2",
"fs-extra": "^9.0.0",
"node-fetch": "^2.6.6",
"prettier": "^2.0.5",
"reflect-metadata": "^0.1.13",
"yargs": "^15.3.1"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/fs-extra": "^8.1.0",
"@types/jest": "^24.0.18",
"@types/node-fetch": "^2.6.2",
"@types/prettier": "^2.0.0",
"@types/yargs": "^15.0.4",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"tslint": "^6.1.2",
"typescript": "^3.8.3",
"prettier": "^2.0.5"
},
"files": [
"dist",
"package.json",
"package-lock.json",
"README.md",
"LICENSE"
]
}