forked from xanderdeseyn/hardhat-watcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.35 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
{
"name": "hardhat-watcher",
"version": "2.1.0",
"description": "Hardhat file watcher plugin",
"repository": "https://github.com/N1ghtly/hardhat-watcher",
"author": "Xander Deseyn",
"license": "MIT",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"keywords": [
"ethereum",
"hardhat",
"hardhat-plugin",
"file",
"watcher"
],
"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 -r ts-node/register 'test/**/*.test.ts'",
"build": "tsc",
"watch": "tsc -w",
"release": "yarn build && yarn np --no-tests --no-2fa"
},
"files": [
"dist/src/",
"src/",
"LICENSE",
"README.md"
],
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/fs-extra": "^9.0.4",
"@types/mocha": "^8.0.4",
"@types/node": "^14.14.7",
"chai": "^4.2.0",
"hardhat": "^2.0.3",
"mocha": "^8.2.1",
"np": "^7.0.0",
"prettier": "2.1.2",
"ts-node": "^9.0.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^4.0.3"
},
"peerDependencies": {
"hardhat": "^2.0.0"
},
"dependencies": {
"chokidar": "^3.4.3"
}
}