-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
60 lines (60 loc) · 1.6 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
{
"name": "cordova-plugin-smartlook",
"version": "2.0.6",
"description": "Official Smartlook SDK plugin for Cordova Android and iOS applications.",
"platforms": [
"android",
"ios"
],
"cordova": {
"id": "cordova-plugin-smartlook",
"platforms": [
"android",
"ios"
]
},
"engines": {
"cordovaDependencies": {
"2.0.6": {
"cordova": ">=10.0.0",
"cordova-android": ">=10.1.1"
}
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/smartlook/cordova-smartlook-plugin.git"
},
"keywords": [
"ecosystem:cordova",
"cordova-android",
"cordova-ios"
],
"author": "c0mtru1se <martin.budinsky@smartlook.com> (https://www.smartlook.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/smartlook/cordova-smartlook-plugin"
},
"homepage": "https://www.smartlook.com",
"types": "./www/cordova-plugin-smartlook.d.ts",
"main": "./www/cordova-plugin-smartlook.js",
"scripts": {
"test": "jest",
"test:android": "cordova-paramedic --verbose --platform android@11 --plugin .",
"test:ios": "cordova-paramedic --verbose --platform ios --plugin .",
"dev": "tsc -w",
"build": "tsc",
"ptr": "yarn prettier --write .",
"postpublish": "PACKAGE_VERSION=$(cat package.json | grep \\\"version\\\" | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]') && git tag v$PACKAGE_VERSION && git push --tags"
},
"devDependencies": {
"@types/cordova": "^0.0.34",
"@types/jest": "^29.4.0",
"@types/node": "^15.6.1",
"jest": "^29.4.3",
"jest-environment-jsdom": "^29.4.3",
"prettier": "2.8.4",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
}
}