forked from wighawag/hardhat-preprocessor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.51 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
{
"name": "hardhat-preprocessor",
"version": "0.1.4",
"description": "Hardhat plugin that can preprocess contracts without writing to filesystem",
"repository": "github:wighawag/hardhat-preprocessor",
"author": "Ronan Sandford",
"license": "MIT",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"keywords": [
"ethereum",
"smart-contracts",
"hardhat",
"hardhat-plugin"
],
"files": [
"dist/src/",
"src/",
"LICENSE",
"README.md"
],
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/fs-extra": "^5.0.4",
"@types/mocha": "^5.2.5",
"@types/node": "^8.10.38",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"chai": "^4.2.0",
"dotenv": "^6.2.0",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"fs-extra": "^9.0.1",
"hardhat": "^2.0.9",
"mocha": "^5.2.0",
"prettier": "^2.0.5",
"prettier-plugin-solidity": "^1.0.0-alpha.57",
"source-map-support": "^0.5.12",
"ts-node": "^8.1.0",
"typescript": "^3.4.5"
},
"peerDependencies": {
"hardhat": "^2.0.5"
},
"scripts": {
"prepare": "node ./.setup.js",
"lint:fix": "eslint --fix .",
"lint": "eslint .",
"test": "mocha --exit",
"build": "tsc",
"watch": "tsc -w",
"publish:next": "npm publish --tag next",
"publish:release": "npm publish",
"prepublishOnly": "npm run build"
},
"dependencies": {
"murmur-128": "^0.2.1"
}
}