forked from connect-boiz/soroban-security-scanner
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 929 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 929 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
31
32
33
34
35
36
37
38
39
{
"name": "soroban-security-scanner",
"version": "1.0.0",
"description": "Security scanner for Soroban smart contracts",
"main": "src/index.js",
"scripts": {
"scan": "node src/index.js",
"test": "jest",
"test:e2e": "playwright test",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write \"src/**/*.js\"",
"format:check": "prettier --check \"src/**/*.js\"",
"start": "node src/index.js"
},
"keywords": [
"soroban",
"stellar",
"security",
"smart-contracts",
"blockchain",
"audit",
"vulnerability"
],
"author": "connect-boiz",
"license": "MIT",
"dependencies": {
"@stellar/stellar-sdk": "^14.6.1",
"commander": "^11.1.0",
"chalk": "^4.1.2",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"jest": "^29.7.0",
"eslint": "^8.57.0",
"prettier": "^3.2.5",
"@playwright/test": "^1.44.0"
}
}