-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.23 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 2.23 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
85
86
87
88
89
90
91
{
"name": "cordova-talsec-plugin-freerasp",
"version": "9.0.0",
"description": "Cordova plugin for improving app security and threat monitoring on Android and iOS mobile devices.",
"cordova": {
"id": "cordova-talsec-plugin-freerasp",
"platforms": [
"android",
"ios"
]
},
"scripts": {
"eslint": "eslint . --ext ts",
"prettier": "prettier \"**/*.{ts,js,html,css}\"",
"typecheck": "tsc --noEmit",
"tsc": "tsc --emitDeclarationOnly",
"build": "esbuild www/src/talsec.ts --bundle --outfile=www/dist/talsec.js --format=cjs --platform=node --external:cordova"
},
"repository": {
"type": "git",
"url": "git+https://github.com/talsec/Free-RASP-Cordova.git"
},
"keywords": [
"cordova",
"ecosystem:cordova",
"cordova-android",
"cordova-ios",
"cordova-plugin",
"cordova-libraries",
"freerasp",
"security",
"tampering-detection",
"root-detection",
"app-shielding",
"rasp",
"tampering",
"reverse-engineering",
"application-security",
"frida",
"jailbreak",
"root"
],
"author": "Talsec",
"license": "MIT",
"bugs": {
"url": "https://github.com/talsec/Free-RASP-Cordova/issues"
},
"homepage": "https://docs.talsec.app/freerasp",
"types": "www/dist/types/talsec.d.ts",
"devDependencies": {
"@cordova/eslint-config": "^5.0.0",
"@types/cordova": "^11.0.2",
"@types/node": "^20.8.10",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"esbuild": "^0.27.2",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^3.0.3",
"prettier-eslint": "^16.1.2",
"typescript": "^5.2.2"
},
"eslintConfig": {
"root": true,
"extends": [
"@cordova/eslint-config"
],
"rules": {
"prettier/prettier": [
"off",
{
"quoteProps": "consistent",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false
}
]
}
},
"prettier": {
"singleQuote": true
},
"eslintIgnore": [
"node_modules/",
"example/plugins/",
"example/platforms"
]
}