-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.22 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.22 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
{
"name": "@sidestream/solhint-plugin-makerdao",
"version": "0.1.1",
"description": "",
"scripts": {
"lint": "eslint --ext \".js,.ts\" --ignore-path .gitignore . --max-warnings=0",
"test": "jest -i --silent=false",
"compile": "tsc",
"prepublish": "npm run compile",
"pretest": "npm run compile"
},
"repository": {
"type": "git",
"url": "https://github.com/sidestream-tech/solhint-plugin-makerdao"
},
"bin": "bin/lint.js",
"main": "index.js",
"keywords": [
"solhint",
"makerdao",
"plugin",
"solidity"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@jest/globals": "^29.6.1",
"@types/jest": "^29.5.3",
"@types/semver": "^7.5.0",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.44.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.3.1",
"prettier": "^2.8.3",
"solhint": "^3.3.8",
"solhint-plugin-makerdao": "file:",
"ts-jest": "^29.1.1"
},
"dependencies": {
"@solidity-parser/parser": "^0.16.1",
"semver": "^7.3.8"
}
}