generated from clauBv23/hardhat-ts-plugin-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.52 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
{
"name": "hardhat-c3-linearization",
"version": "1.2.2",
"description": "Hardhat TypeScript plugin to get the C3 linearization of your project.",
"author": "Claudia Barcelo <[email protected]>",
"repository": "github:clauBv23/hardhat-c3-linearization",
"license": "MIT",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"keywords": [
"ethereum",
"smart-contracts",
"hardhat",
"hardhat-plugin",
"c3-linearization"
],
"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"
},
"files": [
"dist/src/",
"src/",
"LICENSE",
"README.md"
],
"devDependencies": {
"@solidity-parser/parser": "^0.16.0",
"@types/chai": "^4.3.0",
"@types/chai-as-promised": "^7.1.5",
"@types/fs-extra": "^5.0.4",
"@types/mocha": "^9.1.0",
"@types/node": "^16.0.0",
"@types/sinon": "^10.0.15",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"hardhat": "^2.16.0",
"mocha": "^10.0.0",
"prettier": "2.4.0",
"sinon": "^9.0.0",
"ts-node": "^10.7.0",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^5.1.3"
},
"peerDependencies": {
"hardhat": "^2.16.0"
}
}