forked from insightautos/cordova-gmv-barcode-scanner
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
58 lines (58 loc) · 1.72 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
{
"name": "cordova-plugin-mlkit-barcode-scanner",
"version": "3.0.7",
"description": "Google MLKit Vision Barcode Scanner Plugin",
"cordova": {
"id": "cordova-plugin-mlkit-barcode-scanner",
"platforms": [
"android",
"ios"
]
},
"keywords": [
"ecosystem:cordova",
"cordova-ios",
"cordova-android"
],
"author": "Florian Biebel",
"license": "MIT",
"main": "www/BarcodeScanner.contract.js",
"prettier": "@teckel.ts-internal/prettier-config",
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"build": "npm run lint && npm run clean && npm run transpile",
"clean": "mkdir -p 'www' && find 'www' ! -path 'www' -delete",
"lint": "eslint . --ext .js,.ts --cache && tsc -p tsconfig.lint.json",
"test": "echo \"Error: no test specified\" && exit 1",
"transpile": "rollup --config --silent",
"prepublishOnly": "npm run build"
},
"files": [
"/src/",
"/www/**/*.{js,js.map,d.ts}",
"/plugin.xml"
],
"repository": {
"type": "git",
"url": "https://github.com/MobisysGmbH/cordova-plugin-mlkit-barcode-scanner.git"
},
"homepage": "https://github.com/MobisysGmbH/cordova-plugin-mlkit-barcode-scanner#readme",
"publishConfig": {
"registry": "https://pkgs.dev.azure.com/mobisysgmbh/_packaging/mobisys/npm/registry/"
},
"devDependencies": {
"@rollup/plugin-commonjs": "20.0.0",
"@rollup/plugin-node-resolve": "13.0.4",
"@teckel.ts-internal/eslint-config": "3.0.0",
"@teckel.ts-internal/prettier-config": "1.0.0",
"@teckel.ts-internal/ts-config": "2.0.1",
"@types/cordova": "0.0.34",
"@types/node": "16.7.1",
"eslint": "7.32.0",
"rollup": "2.56.3",
"rollup-plugin-typescript2": "0.30.0",
"tslib": "2.3.1"
}
}