-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.64 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.64 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
{
"name": "rnsec",
"version": "1.0.0",
"description": "Zero-config security scanner for React Native & Expo apps. Find vulnerabilities with 63 security rules covering Android, iOS, and React Native specific issues.",
"main": "dist/index.js",
"bin": {
"rnsec": "dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "ts-node src/index.ts",
"prepublishOnly": "npm run build",
"test": "echo \"Tests coming soon\" && exit 0"
},
"keywords": [
"react-native",
"security",
"scanner",
"static-analysis",
"vulnerability",
"expo",
"mobile",
"android",
"ios",
"security-audit",
"sast",
"code-analysis",
"security-scanner",
"mobile-security"
],
"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",
"CHANGELOG.md"
],
"dependencies": {
"@babel/parser": "^7.26.3",
"@babel/traverse": "^7.26.5",
"@babel/types": "^7.26.3",
"boxen": "^8.0.1",
"chalk": "^5.6.2",
"cli-spinners": "^3.3.0",
"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"
}
}