forked from Cordobo/angularx-qrcode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 4 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 4 KB
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
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"$schema": "./node_modules/ng-packagr/package.schema.json",
"name": "angularx-qrcode",
"version": "14.0.0",
"main": "dist/angularx-qrcode/bundles/angularx-qrcode.umd.js",
"author": {
"name": "Andreas Jacob <andreas@cordobo.de>",
"url": "http://cordobo.com/"
},
"description": "Simple QRCode generator library for Angular4/5/6/7/8/9/10/11/12/13/14+ and Ionic 3/4/5 using node-qrcode",
"license": "MIT",
"scripts": {
"lint": "ng lint",
"ng": "ng",
"test": "ng test",
"watch": "ng build --project angularx-qrcode --watch --configuration development",
"start": "ng serve demo-app --open",
"start:dev": "npm run build && npm run build:demo -- --configuration development && npm run start:server",
"start:prod": "npm run build && npm run build:demo -- --configuration production && npm run start:server",
"start:server": "lite-server --baseDir=\"dist/demo-app\"",
"prepare:build": "rimraf .angular dist tmp && cp ./README.md ./LICENSE projects/angularx-qrcode/",
"build": "npm run prepare:build && ng build --project angularx-qrcode --configuration production",
"build:demo": "ng build --project demo-app",
"publish": "rm -rf node_modules && npm install && npm run build && cd dist/angularx-qrcode && npm publish && cd ../../",
"ci:build:lib": "ng build --project angularx-qrcode --configuration production",
"ci:build:app": "ng build --project demo-app --configuration production --base-href=/angularx-qrcode/",
"ci:lint": "ng lint",
"ci:test": "ng test --code-coverage"
},
"dependencies": {
"@cordobo/qrcode": "1.5.0"
},
"peerDependencies": {
"@angular/core": ">= 14.0.0 < 15.0.0"
},
"devDependencies": {
"@angular-devkit/architect": "0.1400.1",
"@angular-devkit/build-angular": "~14.0.1",
"@angular-eslint/builder": "14.0.0-alpha.2",
"@angular-eslint/eslint-plugin": "14.0.0-alpha.2",
"@angular-eslint/eslint-plugin-template": "14.0.0-alpha.2",
"@angular-eslint/schematics": "14.0.0-alpha.2",
"@angular-eslint/template-parser": "14.0.0-alpha.2",
"@angular/animations": "~14.0.1",
"@angular/cdk": "~14.0.1",
"@angular/cli": "~14.0.1",
"@angular/common": "~14.0.1",
"@angular/compiler": "~14.0.1",
"@angular/compiler-cli": "~14.0.1",
"@angular/core": "~14.0.1",
"@angular/forms": "~14.0.1",
"@angular/material": "~14.0.1",
"@angular/platform-browser": "~14.0.1",
"@angular/platform-browser-dynamic": "~14.0.1",
"@angular/router": "~14.0.1",
"@babel/core": "^7.16.7",
"@types/jasmine": "~3.10.0",
"@types/node": "^16.11.9",
"@types/qrcode": "1.4.2",
"@typescript-eslint/eslint-plugin": "5.27.1",
"@typescript-eslint/parser": "5.27.1",
"eslint": "^8.17.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jsdoc": "37.5.1",
"eslint-plugin-prefer-arrow": "latest",
"jasmine-core": "~3.10.0",
"karma": "6.3.17",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.1.0",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "~1.7.0",
"lite-server": "2.6.1",
"ng-packagr": "~14.0.2",
"ngx-color-picker": "12.0.1",
"prettier": "2.6.2",
"rimraf": "3.0.2",
"rxjs": "~7.4.0",
"tslib": "^2.3.0",
"typescript": "~4.7.3",
"zone.js": "~0.11.4"
},
"keywords": [
"angularx-qrcode",
"angular-qrcode",
"ng-qrcode",
"ngx-qrcode",
"angular",
"angular4",
"angular5",
"angular6",
"angular7",
"angular8",
"angular9",
"angular10",
"angular11",
"angular12",
"angular13",
"angular14",
"ionic",
"ionic3",
"ionic4",
"ionic5",
"aot",
"aot-compatible",
"aot-compilation",
"library",
"ng",
"ng2",
"ngx",
"ivy",
"qr",
"code",
"qrcode",
"qr-code"
],
"repository": {
"type": "git",
"url": "https://github.com/cordobo/angularx-qrcode.git"
},
"bugs": {
"url": "https://github.com/cordobo/angularx-qrcode/issues"
},
"homepage": "https://github.com/cordobo/angularx-qrcode#readme"
}