forked from Cordobo/angularx-qrcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·100 lines (100 loc) · 2.9 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
{
"name": "angularx-qrcode",
"version": "1.3.0",
"author": {
"name": "Andreas Jacob <[email protected]>",
"url": "http://cordobo.com/"
},
"description": "Ionic 3/4 and Angular4/5/6/7+ QRCode module generator using qrcodejs",
"main": "./dist/index.umd.js",
"module": "./dist/index.js",
"typings": "./dist/index.d.ts",
"license": "MIT",
"keywords": [
"angularx-qrcode",
"angular-qrcode",
"ng-qrcode",
"angular",
"angular5",
"angular6",
"angular7",
"ionic",
"ionic3",
"ionic4",
"aot",
"aot-compatible",
"aot-compilation",
"library",
"ng",
"typescript"
],
"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",
"scripts": {
"build": "npm run build:esm && npm run build:umd",
"build:esm": "npm run ngcompile",
"build:esm:watch": "gulp build:esm:watch",
"build:umd": "webpack --config webpack-umd.config.ts",
"build:umd:watch": "npm run build:umd -- --watch",
"build:watch": "concurrently --raw \"npm run build:umd:watch\" \"npm run build:esm:watch\"",
"ci": "npm run lint && npm run build && npm run docs",
"ci_fix": "npm run lint && npm run build && npm run docs",
"clean:all": "npm run clean:tmp && rimraf node_modules",
"clean:tmp": "rimraf coverage dist tmp docs",
"docs": "compodoc -p tsconfig.json -d docs --disableCoverage --disablePrivate --disableInternal",
"explorer": "source-map-explorer ./dist/index.umd.js",
"lint": "tslint 'src/**/*.ts'",
"ngcompile": "node_modules/.bin/ngc -p tsconfig-aot.json",
"postversion": "git push && git push --tags",
"prebuild": "rimraf dist tmp",
"prebuild:watch": "rimraf dist tmp",
"prepublishOnly": "npm run ci",
"preversion": "npm run ci"
},
"dependencies": {
"qrcodejs2": "0.0.2"
},
"peerDependencies": {
"@angular/common": "^7.0.0",
"@angular/core": "^7.0.0"
},
"devDependencies": {
"@angular/cli": "^7.0.0",
"@angular/common": "^7.0.0",
"@angular/compiler": "^7.0.0",
"@angular/compiler-cli": "^7.0.0",
"@angular/core": "^7.0.0",
"@angular/platform-browser": "^7.0.0",
"@angular/platform-browser-dynamic": "^7.0.0",
"@compodoc/compodoc": "^1.0.0-beta.9",
"@types/node": "^7.0.18",
"@types/tapable": "^0.2.5",
"@types/webpack": "^2.2.15",
"@types/webpack-env": "^1.13.0",
"angular2-template-loader": "^0.6.2",
"awesome-typescript-loader": "^3.1.3",
"codelyzer": "^4.3.0",
"concurrently": "^3.4.0",
"gulp": "^3.9.1",
"gulp-inline-ng2-template": "5.0.1",
"json-loader": "^0.5.4",
"raw-loader": "^0.5.1",
"rimraf": "2.6.1",
"rxjs": "^6.0.0",
"rxjs-tslint": "^0.1.5",
"source-map-explorer": "^1.3.3",
"ts-node": "^3.0.4",
"tslint": "^5.9.1",
"typescript": "<3.2.0",
"webpack": "^2.5.1",
"webpack-angular-externals": "^1.0.2",
"webpack-rxjs-externals": "^1.0.0",
"zone.js": "^0.8.10"
}
}