-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 3.28 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@evva/abrevva-capacitor",
"version": "3.0.2",
"type": "module",
"description": "Collection of tools to work with electronic EVVA access components.",
"main": "dist/plugin.cjs.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"unpkg": "dist/plugin.js",
"files": [
"android/src/main/",
"android/build.gradle",
"dist/",
"ios/Plugin/",
"EvvaAbrevvaCapacitor.podspec",
"LICENSE"
],
"author": "EVVA Sicherheitstechnologie GmbH",
"license": "SEE LICENSE IN <LICENSE>",
"repository": {
"type": "git",
"url": "git+https://github.com/evva-sfw/abrevva-capacitor.git"
},
"bugs": {
"url": "https://github.com/evva-sfw/abrevva-capacitor/issues"
},
"keywords": [
"capacitor",
"plugin",
"native"
],
"scripts": {
"verify": "npm run verify:ios && npm run verify:android && npm run verify:web",
"verify:ios": "cd ios && pod install && xcodebuild -workspace Plugin.xcworkspace -scheme Plugin -destination generic/platform=iOS && cd ..",
"verify:android": "cd android && ./gradlew clean build test && cd ..",
"verify:web": "npm run build",
"lint": "npm run eslint && npm run prettier -- --check && npm run swiftlint -- lint",
"fmt": "npm run eslint -- --fix && npm run prettier -- --write && npm run swiftlint -- --fix --format",
"eslint": "eslint . --ext ts",
"prettier": "prettier \"**/*.java\"",
"swiftlint": "node-swiftlint",
"docgen": "docgen --api AbrevvaInterface --output-readme README.md --output-json dist/abrevva-api.json",
"build": "npm run clean && npm run docgen && tsc && rollup -c rollup.config.js",
"clean": "rimraf ./dist",
"watch": "tsc --watch",
"test": "jest",
"test:coverage": "jest --coverage",
"test:cov": "jest --coverage --reporters=default --reporters=jest-junit",
"test:watch": "jest --watch",
"version:dev": "npm version --no-git-tag-version $(git describe)",
"release": "standard-version",
"release:minor": "standard-version -r minor",
"release:major": "standard-version -r major",
"prepublishOnly": "npm run build"
},
"dependencies": {
"throat": "^6.0.2"
},
"devDependencies": {
"@babel/eslint-parser": "^7.25.1",
"@babel/preset-env": "^7.25.4",
"@capacitor/android": "^6.1.2",
"@capacitor/cli": "^6.1.2",
"@capacitor/core": "^6.1.2",
"@capacitor/docgen": "^0.2.2",
"@capacitor/ios": "^6.1.2",
"@ionic/swiftlint-config": "^1.1.2",
"@release-it/conventional-changelog": "^8.0.2",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.7.4",
"auto-changelog": "^2.5.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"prettier-plugin-java": "^2.6.4",
"release-it": "^17.6.0",
"rimraf": "^6.0.1",
"rollup": "^3.29.4",
"swiftlint": "^1.0.2",
"ts-jest": "^29.2.5",
"typescript": "~5.3.3"
},
"peerDependencies": {
"@capacitor/core": "^6.1.2"
},
"swiftlint": "../../swiftlint.config.cjs",
"capacitor": {
"ios": {
"src": "ios"
},
"android": {
"src": "android"
}
},
"jest-junit": {
"outputDirectory": "coverage",
"outputName": "junit.xml"
}
}