-
-
Notifications
You must be signed in to change notification settings - Fork 228
/
package.json
97 lines (97 loc) · 3.32 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
{
"name": "@zxing/ngx-scanner",
"version": "1.0.0",
"homepage": "https://github.com/zxing-js/ngx-scanner#readme",
"repository": {
"type": "git",
"url": "https://github.com/zxing-js/ngx-scanner.git"
},
"authors": [
{
"name": "David Werth",
"email": "werth.david@gmail.com"
},
{
"name": "Luiz Machado",
"email": "machado@odahcam.com"
}
],
"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 --configuration production && cp README.md ./dist/zxing-scanner",
"build:demo": "ng build zxing-scanner-demo --configuration production",
"build:gh-pages": "ng build zxing-scanner-demo --configuration production --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')\"",
"deploy:demo:ngh": "npm run build:gh-pages && npx ngh --dir=dist/gh-pages"
},
"dependencies": {
"@angular/animations": "^18.0.0",
"@angular/cdk": "^18.0.0",
"@angular/common": "^18.0.0",
"@angular/core": "^18.0.0",
"@angular/forms": "^18.0.0",
"@angular/material": "^18.0.0",
"@angular/platform-browser": "^18.0.0",
"@angular/platform-browser-dynamic": "^18.0.0",
"@angular/router": "^18.0.0",
"@angular/service-worker": "^18.0.0",
"@zxing/browser": "^0.1.5",
"@zxing/library": "^0.21.0",
"rxjs": "^7.8.1",
"tslib": "^2.6.2"
},
"devDependencies": {
"@angular-devkit/architect": "^0.1800.1",
"@angular-devkit/build-angular": "^18.0.1",
"@angular-devkit/core": "^18.0.1",
"@angular-devkit/schematics": "^18.0.1",
"@angular/cli": "^18.0.1",
"@angular/compiler": "^18.0.0",
"@angular/compiler-cli": "^18.0.0",
"@angular/language-service": "^18.0.0",
"@compodoc/compodoc": "^1.1.24",
"@types/jasmine": "^5.1.4",
"@types/jasminewd2": "~2.0.13",
"@types/node": "^20.12.12",
"codelyzer": "^6.0.2",
"jasmine-core": "^5.1.2",
"jasmine-spec-reporter": "^7.0.0",
"karma": "^6.4.3",
"karma-chrome-launcher": "^3.2.0",
"karma-cli": "^2.0.0",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-jasmine": "^5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"ng-packagr": "^18.0.0",
"protractor": "^7.0.0",
"ts-node": "^10.9.2",
"tslint": "^6.1.3",
"typescript": "5.4.5",
"zone.js": "~0.14.6"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/zxing-js"
}
}