-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.41 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.41 KB
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
73
74
{
"name": "hardhat-storage-vault",
"version": "1.3.0",
"description": "Hardhat plugin to check and lock the storage layout of contracts",
"repository": "github:emretepedev/hardhat-storage-vault",
"author": {
"name": "Emre Tepe",
"email": "emretepedev@gmail.com",
"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"
],
"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",
"storage-check": "cd ./test/fixture-projects/hardhat-project/ && yarn run hardhat storage-check",
"storage-lock": "cd ./test/fixture-projects/hardhat-project/ && yarn run hardhat storage-lock",
"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/chai-spies": "^1.0.3",
"@types/deepmerge": "^2.2.0",
"@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.48.1",
"@typescript-eslint/parser": "^5.48.1",
"chai": "^4.3.7",
"chai-spies": "^1.0.0",
"cspell": "^6.18.1",
"eslint": "^8.31.0",
"eslint-plugin-json": "^3.1.0",
"hardhat": "^2.0.4",
"hardhat-finder": "^3.0.0",
"mocha": "^10.2.0",
"prettier": "^2.8.2",
"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",
"hardhat-finder": "^2.0.4"
},
"dependencies": {
"chalk": "^4.1.2",
"deepmerge": "^4.2.2",
"lodash": "^4.17.21"
}
}