-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.78 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
{
"name": "cordova-plugin-call-directory",
"version": "1.7.1",
"description": "Cordova plugin to build an iOS Call Directory extension",
"license": "MIT",
"contributors": [
"Niklas Merz"
],
"cordova": {
"id": "cordova-plugin-call-directory",
"platforms": [
"ios"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/GEDYSIntraWare/cordova-plugin-call-directory"
},
"keywords": [
"cordova",
"plugin",
"calldirectory",
"call-id",
"ecosystem:cordova",
"cordova-ios",
"ios"
],
"author": "GEDYS IntraWare GmbH",
"bugs": {
"url": "https://github.com/GEDYSIntraWare/cordova-plugin-call-directory/issues"
},
"homepage": "https://github.com/GEDYSIntraWare/cordova-plugin-call-directory#readme",
"dependencies": {
"cordova-plugin-add-swift-support": "^2.0.2",
"elementtree": "^0.1.7",
"file-system": "^2.2.2",
"path": "^0.12.7",
"plist": "^3.0.5",
"q": "^1.5.1",
"xcode": "^3.0.1"
},
"devDependencies": {
"cordova-paramedic": "git+https://github.com/apache/cordova-paramedic.git",
"cordova-plugin-xml": "^0.1.2",
"eslint": "^8.24.0",
"jasmine": "^2.8.0"
},
"scripts": {
"test": "npm run eslint",
"eslint": "npx eslint www",
"test-travis": "npm run test-ios",
"test-local": "npm run test-browser && npm run test-android && npm run test-ios",
"test-ios": "npx cordova-paramedic --platform ios --plugin $(pwd) --verbose",
"test-browser": "npx cordova-paramedic --platform browser --plugin $(pwd)",
"test-saucelabs": "npm run test-saucelabs-ios && npm run test-saucelabs-android",
"test-saucelabs-ios": "npx cordova-paramedic --config ./pr/ios-10.0 --plugin $(pwd) --shouldUseSauce",
"plugin-version": "cordova-plugin-xml setVersion"
}
}