-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
53 lines (53 loc) · 1.43 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
{
"name": "@jcesarmobile/ssl-skip",
"version": "0.4.0",
"description": "Capacitor plugin for skipping ssl checks",
"files": [
"android/src/main/",
"android/build.gradle",
"ios/Plugin/",
"JcesarmobileSslSkip.podspec"
],
"author": "jcesarmobile",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jcesarmobile/ssl-skip.git"
},
"bugs": {
"url": "https://github.com/jcesarmobile/ssl-skip/issues"
},
"keywords": [
"capacitor",
"plugin",
"native"
],
"scripts": {
"verify": "npm run verify:ios && npm run verify:android",
"verify:ios": "cd ios && pod install && xcodebuild -workspace Plugin.xcworkspace -scheme Plugin && cd ..",
"verify:android": "cd android && ./gradlew clean build test && cd ..",
"lint": "npm run prettier -- --check",
"fmt": "npm run prettier -- --write",
"prettier": "prettier \"**/*.{css,html,ts,js,java}\"",
"swiftlint": "node-swiftlint"
},
"devDependencies": {
"@capacitor/android": "^6.0.0",
"@capacitor/ios": "^6.0.0",
"@ionic/prettier-config": "^2.0.0",
"prettier": "~2.7.1",
"prettier-plugin-java": "~1.6.2",
"swiftlint": "^1.0.1"
},
"prettier": "@ionic/prettier-config",
"swiftlint": "@ionic/swiftlint-config",
"capacitor": {
"ios": {
"src": "ios"
},
"android": {
"src": "android"
}
},
"homepage": "https://github.com/jcesarmobile/ssl-skip#readme"
}