-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.12 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
{
"name": "hardhat-finder",
"version": "3.1.2",
"description": "Hardhat plugin to get compiler outputs of contracts",
"repository": "github:emretepedev/hardhat-finder",
"author": {
"name": "Emre Tepe",
"email": "[email protected]",
"url": "https://emretepedev.github.io/"
},
"license": "MIT",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"keywords": [
"ethereum",
"smart-contracts",
"hardhat",
"hardhat-plugin",
"solidity",
"solc",
"compiler",
"output",
"finder"
],
"scripts": {
"lint:fix": "tslint --fix --config tslint.json --project tsconfig.json && eslint --fix '**/{*,'',\\.}.{json,js,ts}' && prettier --write '**/{*,'',\\.}.{json,js,ts}'",
"lint": "cspell lint --dot --gitignore '**/{*,'',\\.}{.,''}*' && tslint --config tslint.json --project tsconfig.json && eslint '**/{*,'',\\.}.{json,js,ts}' && prettier --check '**/{*,'',\\.}.{json,js,ts}'",
"test": "mocha --exit --recursive 'test/**/*.test.ts'",
"build": "tsc && tsc-alias",
"watch": "tsc -w",
"prepublishOnly": "yarn run lint && yarn run build",
"finder": "yarn test-hardhat finder",
"test-hardhat": "cd ./test/fixture-projects/hardhat-project/ && yarn run hardhat"
},
"files": [
"dist/src/",
"src/",
"LICENSE",
"README.md"
],
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/fs-extra": "^11.0.1",
"@types/lodash": "^4.14.191",
"@types/mocha": "^10.0.1",
"@types/node": "^16.0.0",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"chai": "^4.3.7",
"cspell": "^6.19.2",
"eslint": "^8.32.0",
"eslint-plugin-json": "^3.1.0",
"hardhat": "^2.0.4",
"mocha": "^10.2.0",
"prettier": "^2.8.3",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.2",
"tsconfig-paths": "^4.1.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"typescript": "^4.9.4"
},
"peerDependencies": {
"hardhat": "^2.0.4"
},
"dependencies": {
"chalk": "^4.1.2",
"deepmerge": "^4.2.2",
"lodash": "^4.17.21"
}
}