forked from zxing-js/ngx-scanner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 3.29 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"$schema": "./node_modules/ng-packagr/package.schema.json",
"name": "@zxing/ngx-scanner",
"description": "High-performance Angular 6 barcode scanner component based on ZXing.",
"version": "1.3.0",
"private": false,
"ngPackage": {
"lib": {
"entryFile": "src/public_api.ts"
},
"whitelistedNonPeerDependencies": [
"@zxing/library"
]
},
"repository": {
"type": "git",
"url": "https://github.com/zxing-js/ngx-scanner"
},
"authors": [
{
"name": "David Werth",
"email": "[email protected]"
},
{
"name": "Luiz Machado",
"email": "[email protected]"
}
],
"keywords": [
"angular",
"zxing",
"qr-code",
"barcode",
"scanner",
"scan"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/zxing-js/ngx-scanner/issues"
},
"scripts": {
"ng": "ng",
"start": "ng serve",
"start:ssl": "ng serve --ssl --live-reload false",
"build": "ng build",
"build:prod": "ng build --prod",
"build:packagr": "ng-packagr -p package.json",
"test": "ng test --watch=false",
"lint": "ng lint",
"e2e": "ng e2e",
"docs": "npm run docs:build",
"docs:build": "compodoc -p tsconfig.json -n zxing-scanner -d docs --hideGenerator",
"docs:serve": "npm run docs:build -- -s",
"docs:watch": "npm run docs:build -- -s -w",
"publish:dist": "cd ./dist && npm publish --access=public",
"postinstall": "node -e \"console.log('\\u001b[35m\\u001b[1mLove ngx-scanner? You can now donate to our open collective:\\u001b[22m\\u001b[39m\\n > \\u001b[34mhttps://opencollective.com/ngx-scanner/donate\\u001b[0m')\""
},
"dependencies": {
"@zxing/library": "0.8.3"
},
"peerDependencies": {
"rxjs": "^6.3.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.10.0",
"@angular-devkit/core": "^7.0.4",
"@angular/animations": "^7.0.0",
"@angular/cli": "^7.0.1",
"@angular/common": "^7.0.0",
"@angular/compiler": "^7.0.0",
"@angular/compiler-cli": "^7.0.0",
"@angular/core": "^7.0.0",
"@angular/forms": "^7.0.0",
"@angular/http": "^7.0.0",
"@angular/language-service": "^7.0.0",
"@angular/platform-browser": "^7.0.0",
"@angular/platform-browser-dynamic": "^7.0.0",
"@angular/router": "^7.0.0",
"@compodoc/compodoc": "^1.1.1",
"@types/jasmine": "^2.8.6",
"@types/jasminewd2": "~2.0.2",
"@types/node": "^10.12.2",
"codelyzer": "^4.3.0",
"core-js": "^2.5.5",
"jasmine-core": "^3.3.0",
"jasmine-spec-reporter": "^4.2.1",
"karma": "^3.1.1",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "^1.0.1",
"karma-coverage-istanbul-reporter": "^2.0.4",
"karma-jasmine": "^1.1.1",
"karma-jasmine-html-reporter": "^1.4.0",
"ng-packagr": "^4.4.0",
"npm-install-peers": "^1.2.1",
"protractor": "^5.3.1",
"ts-node": "^7.0.1",
"tsickle": "^0.33.1",
"tslint": "^5.9.1",
"typescript": "~3.1.3",
"zone.js": "^0.8.26"
},
"main": "dist/bundles/zxing-ngx-scanner.umd.js",
"module": "dist/esm5/zxing-ngx-scanner.js",
"es2015": "dist/esm2015/zxing-ngx-scanner.js",
"typings": "dist/zxing-ngx-scanner.d.ts",
"metadata": "dist/zxing-ngx-scanner.metadata.json",
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/ngx-scanner"
}
}