-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathpackage.json
57 lines (57 loc) · 1.64 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
{
"name": "angular2-qrcode",
"version": "2.0.3",
"description": "An Angular 2 component that generates a QR Code.",
"main": "lib/angular2-qrcode.umd.js",
"module": "lib/angular2-qrcode.js",
"typings": "lib/angular2-qrcode.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/SuperiorJT/angular2-qrcode.git"
},
"scripts": {
"clean": "rimraf lib && rimraf build",
"ngc": "ngc -p src/tsconfig.json",
"rollup:fesm": "rollup build/angular2-qrcode.js -o lib/angular2-qrcode.js",
"rollup:umd": "rollup build/angular2-qrcode.js -o lib/angular2-qrcode.umd.js --format umd --name angular2-qrcode",
"copy-metadata": "copyfiles -f build/**metadata.json build/angular2-qrcode.d.ts build/index** lib",
"build": "npm run clean && npm run ngc && npm run rollup:fesm && npm run rollup:umd && npm run copy-metadata && rimraf build"
},
"keywords": [
"qrcode",
"qr",
"code",
"angular2",
"angular",
"2",
"ng2"
],
"files": [
"lib"
],
"dependencies": {
"qrious": "^4.0.2"
},
"peerDependencies": {
"@angular/core": ">=2.0.0"
},
"devDependencies": {
"@angular/common": "4.0.2",
"@angular/compiler": "4.0.2",
"@angular/compiler-cli": "4.0.2",
"@angular/core": "4.0.2",
"@angular/platform-browser": "4.0.2",
"@angular/platform-browser-dynamic": "4.0.2",
"@types/node": "~6.0.60",
"copyfiles": "1.2.0",
"core-js": "^2.4.1",
"rimraf": "^2.6.1",
"rollup": "0.41.6",
"rxjs": "5.1.0",
"ts-node": "~2.0.0",
"typescript": "2.2.2",
"zone.js": "^0.8.4"
},
"author": "superiorjt <[email protected]>",
"license": "MIT"
}