-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 826 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 826 Bytes
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
{
"name": "@nexeth/static-analysis",
"module": "index.ts",
"type": "module",
"license": "MIT",
"author": "mfbevan",
"scripts": {
"start": "bun index.ts",
"test": "bun test",
"lint": "eslint . ",
"nexeth": "bun commands/nexeth.ts",
"nexeth:test-contract": "bun nexeth analyse ./test/contracts/ViolationContract.sol"
},
"dependencies": {
"@solidity-parser/parser": "^0.16.1",
"commander": "^11.0.0",
"pino": "^8.15.1",
"pino-pretty": "^10.2.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"bun-types": "latest",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.28.1",
"typescript": "^5.2.2"
}
}