-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
53 lines (53 loc) · 1.36 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.5.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": "npm run build && npx np --no-tests --no-2fa"
},
"files": [
"dist/src/",
"src/",
"LICENSE",
"README.md"
],
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/fs-extra": "^9.0.13",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.31",
"chai": "^4.3.6",
"hardhat": "^2.9.3",
"mocha": "^10.0.0",
"np": "^7.6.1",
"prettier": "^2.6.2",
"ts-node": "^9.0.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"typescript": "^4.0.3"
},
"peerDependencies": {
"hardhat": "^2.0.0"
},
"dependencies": {
"chokidar": "^3.5.3"
}
}