-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
87 lines (87 loc) · 2.07 KB
/
package.json
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
{
"name": "cordova-talsec-plugin-freerasp",
"version": "7.3.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 && node scripts/remove-export.js && prettier --write www/talsec.*"
},
"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://github.com/talsec/Free-RASP-Cordova",
"types": "www/talsec.d.ts",
"devDependencies": {
"@cordova/eslint-config": "^5.0.0",
"@types/cordova": "^11.0.2",
"@types/node": "^20.8.10",
"@typescript-eslint/parser": "^6.9.1",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.0.0",
"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/"
]
}