forked from tadeukaiba/custom-barcode-scanner
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·51 lines (51 loc) · 1.47 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
{
"name": "cordova-plugin-custom-scanner",
"version": "1.0.1",
"main": "dist/umd/custom-barcode-scanner.js",
"typings": "dist/esm/custom-barcode-scanner.d.ts",
"module": "dist/esm/custom-barcode-scanner.js",
"description": "A starting point for a Cordova Plugin",
"scripts": {
"build": "npm run clean && npm run build:umd && npm run build:esm",
"build:qa": "npm run lint && npm run test && npm run build",
"build:esm": "ngc -p tsconfig-esm.json",
"build:test": "ngc -p tsconfig-test.json",
"build:umd": "ngc",
"clean": "rm -rf ./dist"
},
"dependencies": {},
"devDependencies": {
"@angular/common": "~5.0.0",
"@angular/compiler": "~5.0.0",
"@angular/compiler-cli": "~5.0.0",
"@angular/core": "~5.0.0",
"@angular/forms": "~5.0.0",
"@angular/http": "~5.0.0",
"@angular/platform-browser": "~5.0.0",
"@angular/platform-browser-dynamic": "~5.0.0",
"@ionic-native/core": "4.4.0",
"typescript": "~2.4.2"
},
"cordova": {
"id": "cordova-plugin-custom-scanner",
"platforms": [
"android",
"iOS"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/danielrf121/custom-barcode-scanner.git"
},
"keywords": [
"barcode",
"camera",
"scanner"
],
"author": "Daniel Rodrigues",
"license": "ISC",
"bugs": {
"url": "https://github.com/danielrf121/custom-barcode-scanner/issues"
},
"homepage": "https://github.com/danielrf121/custom-barcode-scanner#readme"
}