-
-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.75 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": "rnsec",
"version": "1.3.0",
"description": "Zero-config security scanner for React Native & Expo apps. Find vulnerabilities with 68 security rules covering Android, iOS, and React Native specific issues.",
"main": "dist/index.js",
"bin": {
"rnsec": "dist/index.js"
},
"scripts": {
"build": "tsc && cp src/core/template.html dist/core/template.html",
"dev": "ts-node src/index.ts",
"prepublishOnly": "npm run build",
"test": "npx tsx tests/rules.test.ts",
"lint": "tsc --noEmit",
"clean": "rm -rf dist"
},
"keywords": [
"react-native",
"security",
"scanner",
"static-analysis",
"vulnerability",
"expo",
"mobile",
"android",
"ios",
"security-audit",
"sast",
"code-analysis",
"security-scanner",
"mobile-security",
"security-testing",
"code-security",
"appsec"
],
"type": "module",
"author": "adnxy <adnanpoviolabs@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/adnxy/rnsec.git"
},
"bugs": {
"url": "https://github.com/adnxy/rnsec/issues"
},
"homepage": "https://github.com/adnxy/rnsec#readme",
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"dependencies": {
"@babel/parser": "^7.26.3",
"@babel/traverse": "^7.26.5",
"@babel/types": "^7.26.3",
"boxen": "^8.0.1",
"chalk": "^5.6.2",
"commander": "^14.0.2",
"fast-glob": "^3.3.3",
"gradient-string": "^3.0.0",
"ora": "^9.0.0"
},
"devDependencies": {
"@types/babel__traverse": "^7.20.6",
"@types/commander": "^2.12.0",
"@types/glob": "^8.1.0",
"@types/node": "^24.10.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}