package.json 2 KB
Newer Older
Chok's avatar
Chok committed
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
{
  "name": "cordova-plugin-fingerprint-aio",
  "version": "5.0.1",
  "description": "Cordova plugin to use fingerprint authentication on Android and iOS",
  "cordova": {
    "id": "cordova-plugin-fingerprint-aio",
    "platforms": [
      "android",
      "ios"
    ]
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/niklasmerz/cordova-plugin-fingerprint-aio"
  },
  "keywords": [
    "cordova",
    "plugin",
    "android",
    "fingerprint",
    "authentication",
    "ecosystem:cordova",
    "cordova-android",
    "cordova-ios",
    "ios"
  ],
  "author": "Niklas Merz",
  "funding": "https://github.com/sponsors/NiklasMerz",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/niklasmerz/cordova-plugin-fingerprint-aio/issues"
  },
  "homepage": "https://github.com/niklasmerz/cordova-plugin-fingerprint-aio#readme",
  "devDependencies": {
    "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-appveyor": "npm run test-browser",
    "test-local": "npm run test-browser && npm run test-android && npm run test-ios",
    "test-android": "npx cordova-paramedic --platform android --plugin  $(pwd) --verbose",
    "test-ios": "npx cordova-paramedic --platform ios --plugin  $(pwd) --verbose",
    "test-windows": "npx cordova-paramedic --platform windows --plugin  $(pwd)",
    "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",
    "test-saucelabs-android": "npx cordova-paramedic --config ./pr/android-7.0 --plugin  $(pwd) --shouldUseSauce",
    "plugin-version": "cordova-plugin-xml setVersion"
  },
  "engines": {
    "cordovaDependencies": {
      ">=3.0.0": {
        "cordova-android": ">=8.0.0"
      }
    }
  }
}