-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.11 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.11 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
75
76
77
78
79
80
81
82
83
84
{
"name": "@rn-security/cli",
"version": "0.1.0",
"description": "Command-line interface for the React Native Security Toolkit: static security audits, secret scanning, dependency checks and project readiness for the runtime module.",
"type": "module",
"bin": {
"rn-security": "./bin/rn-security.mjs"
},
"main": "./dist/main.js",
"types": "./dist/main.d.ts",
"exports": {
".": {
"types": "./dist/main.d.ts",
"default": "./dist/main.js"
},
"./package.json": "./package.json"
},
"files": [
"bin",
"dist",
"!**/__tests__",
"!**/*.test.*",
"!**/*.map"
],
"engines": {
"node": ">=22.11.0"
},
"scripts": {
"build": "tsc --project tsconfig.build.json",
"prepare": "tsc --project tsconfig.build.json",
"typecheck": "tsc --noEmit",
"test": "jest",
"clean": "del-cli dist"
},
"keywords": [
"react-native",
"security",
"cli",
"sast",
"static-analysis",
"sarif",
"owasp",
"devsecops"
],
"repository": {
"type": "git",
"url": "git+https://github.com/programmer443/react-native-security-toolkit.git",
"directory": "packages/cli"
},
"author": "Muhammad Ahmad <murtaza.irinatech@gmail.com> (https://github.com/programmer443)",
"license": "MIT",
"bugs": {
"url": "https://github.com/programmer443/react-native-security-toolkit/issues"
},
"homepage": "https://github.com/programmer443/react-native-security-toolkit#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public",
"provenance": true
},
"dependencies": {
"@rn-security/auditor": "workspace:*"
},
"devDependencies": {
"@babel/core": "^7.28.0",
"@babel/preset-env": "^7.28.0",
"@babel/preset-typescript": "^7.27.0",
"@rn-security/mcp": "workspace:*",
"@types/jest": "^30.0.0",
"@types/node": "^22.13.0",
"babel-jest": "^30.2.0",
"del-cli": "^7.0.0",
"jest": "^30.2.0",
"typescript": "^6.0.3"
},
"peerDependencies": {
"@rn-security/mcp": ">=0.1.0"
},
"peerDependenciesMeta": {
"@rn-security/mcp": {
"optional": true
}
}
}