-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.8 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
{
"name": "@rumblefishdev/hardhat-polyjuice-plugin",
"version": "1.1.0",
"description": "Deploy to godwoken network using hardhat-deploy",
"repository": "github:rumblefishdev/hardhat-polyjuice-plugin",
"author": "Rumblefish Software Development",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"ethereum",
"smart-contracts",
"hardhat",
"hardhat-plugin"
],
"scripts": {
"lint:fix": "prettier --write 'src/**/*.{js,ts}' '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'",
"build": "tsc",
"watch": "tsc -w",
"prepublishOnly": "npm run build",
"smoke-test": "bash ./tests/smoke-test.sh",
"clean-up": "bash ./tests/clean-up.sh"
},
"files": [
"dist/",
"src/",
"LICENSE",
"README.md"
],
"dependencies": {
"@polyjuice-provider/ethers": "^0.1.3"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/fs-extra": "^5.0.4",
"@types/lodash": "^4.14.178",
"@types/mocha": "^5.2.6",
"@types/node": "^8.10.38",
"chai": "^4.2.0",
"ethers": "^5.5.3",
"hardhat": "^2.6.0",
"hardhat-deploy": "^0.9.28",
"mocha": "^7.1.2",
"prettier": "2.0.5",
"prettier-plugin-sh": "^0.8.1",
"ts-node": "^8.1.0",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^4.0.3"
},
"peerDependencies": {
"hardhat": "^2.6.0",
"hardhat-deploy": "^0.9.28",
"lodash": "*"
},
"bugs": {
"url": "https://github.com/rumblefishdev/hardhat-polyjuice-plugin/issues"
},
"homepage": "https://github.com/rumblefishdev/hardhat-polyjuice-plugin#readme"
}