This repository has been archived by the owner on Apr 11, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 2 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
{
"name": "hardhat-awesome-cli",
"version": "0.1.4",
"description": "Hardhat made awesome with a flexible CLI to help run test, deploy and more.",
"repository": "https://github.com/marc-aurele-besner/hardhat-awesome-cli.git",
"author": "Marc-Aurele Besner <82244926+marc-aurele-besner@users.noreply.github.com>",
"license": "MIT",
"main": "dist/src/index",
"typings": "dist/src/index",
"bin": {
"hardhat-awesome-cli": "./src/index.ts"
},
"bugs": {
"url": "https://github.com/marc-aurele-besner/hardhat-awesome-cli/issues"
},
"types": "dist/src/index.d.ts",
"keywords": [
"hardhat",
"hardhat-plugin",
"cli",
"test",
"deploy",
"deployment",
"smart-contracts"
],
"files": [
"dist/",
"src/",
"LICENSE",
"README.md"
],
"scripts": {
"lint:fix": "prettier --write src/**/*.{js,ts} && prettier --write test/**/*.{js,ts} && tslint --fix --config tslint.json --project tsconfig.json",
"lint": "tslint --config tslint.json --project tsconfig.json",
"test": "mocha --exit --recursive 'test/**/*.test.ts'",
"prepublishOnly": "tsc --project tsconfig.prod.json",
"build": "tsc --project tsconfig.prod.json",
"buidl": "tsc",
"watch": "tsc -w"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/inquirer": "^9.0.3",
"@types/mocha": "^10.0.1",
"@types/node": "^18.14.6",
"awesome-readme": "^0.0.8",
"chai": "^4.3.7",
"hardhat": "^2.13.0",
"mocha": "^10.2.0",
"prettier": "^2.8.4",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"typescript": "^5.0.0"
},
"peerDependencies": {
"hardhat": "^2.13.0"
},
"dependencies": {
"dotenv": "^16.0.3",
"fs": "^0.0.1-security",
"inquirer": "^8.2.5"
}
}