forked from zxing-js/ngx-scanner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 3.21 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
{
"name": "@zxing/ngx-scanner",
"version": "1.0.0",
"private": true,
"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 zxing-scanner-demo",
"build": "ng build zxing-scanner && cp README.md ./dist/zxing-scanner",
"build:demo": "ng build zxing-scanner-demo --prod",
"build:gh-pages": "ng build zxing-scanner-demo --prod --base-href /ngx-scanner/ --output-path dist/gh-pages",
"test": "ng test zxing-scanner --watch=false --browsers=ChromeHeadless && ng test zxing-scanner-demo --watch=false --browsers=ChromeHeadless",
"lint": "ng lint zxing-scanner && ng lint zxing-scanner-demo",
"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/zxing-scanner && npm publish --access=public",
"postinstall": "node -e \"console.log('\\u001b[35m\\u001b[1mLove ZXing for JS? You can now donate to our open collective:\\u001b[22m\\u001b[39m\\n > \\u001b[34mhttps://opencollective.com/zxing-js/donate\\u001b[0m')\" && ngcc",
"deploy:demo:ngh": "npm run build:gh-pages && npx ngh --dir=dist/gh-pages"
},
"dependencies": {
"@angular/animations": "9.0.0",
"@angular/cdk": "9.0.0",
"@angular/common": "9.0.0",
"@angular/core": "9.0.0",
"@angular/forms": "9.0.0",
"@angular/material": "9.0.0",
"@angular/platform-browser": "9.0.0",
"@angular/platform-browser-dynamic": "9.0.0",
"@angular/router": "9.0.0",
"@angular/service-worker": "9.0.0",
"@zxing/library": "^0.15.1",
"rxjs": "^6.5.4",
"tslib": "^1.10.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.900.1",
"@angular-devkit/build-ng-packagr": "~0.900.1",
"@angular-devkit/core": "9.0.1",
"@angular/cli": "9.0.1",
"@angular/compiler": "9.0.0",
"@angular/compiler-cli": "9.0.0",
"@angular/language-service": "9.0.0",
"@compodoc/compodoc": "^1.1.1",
"@types/jasmine": "^2.8.6",
"@types/jasminewd2": "~2.0.2",
"@types/node": "^12.11.1",
"angular-cli-ghpages": "^0.5.3",
"codelyzer": "^5.1.2",
"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": "^9.0.0",
"npm-install-peers": "^1.2.1",
"protractor": "^5.3.1",
"ts-node": "^7.0.1",
"tslint": "^5.18.0",
"typescript": "3.7.5",
"zone.js": "~0.10.2"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/zxing-js"
}
}