-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.49 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
{
"name": "cordova-plugin-decimal-key",
"version": "1.2.2",
"cordova": {
"id": "cordova-plugin-decimal-key",
"platforms": [
"ios"
]
},
"description": "Cordova plugin decimal keyboard",
"repository": {
"type": "git",
"url": "git://github.com/exxbrain/cordova-plugin-decimal-key.git"
},
"bugs": {
"url": "https://github.com/exxbrain/cordova-plugin-decimal-key/issues"
},
"keywords": [
"cordova",
"plugin",
"decimal",
"keyboard",
"ecosystem:cordova",
"cordova-android",
"cordova-ios",
"ios"
],
"author": "Denis Zakharov",
"license": "MIT",
"homepage": "https://github.com/exxbrain/cordova-plugin-decimal-key#readme",
"devDependencies": {
"cordova-paramedic": "git+https://github.com/apache/cordova-paramedic.git",
"cordova-plugin-xml": "^0.1.2",
"eslint": "^6.5.1",
"jasmine": "^3.2.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 [email protected] --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"
}
}