forked from VadimDez/ng2-pdf-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.48 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
{
"name": "ng2-pdf-viewer",
"version": "3.0.6",
"description": "Angular2+ component for rendering PDF",
"main": "dist/index.js",
"typings": "./dist/index.d.ts",
"directories": {
"example": "example"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"typings": "typings install",
"all": "concurrently \"tsc -w \" \"tsc -p runtime -w \" \"npm run lite\" ",
"watch": "tsc -w ",
"lite": "lite-server",
"clean": "gulp clean",
"compile": "gulp compile",
"build": "gulp build",
"start": "npm run build && concurrently --kill-others \"gulp watch\" \"lite-server\"",
"copy": "cp -R ./build/pdf-viewer/ ./dist/"
},
"repository": {
"type": "git",
"url": "git+https://vadimdez@github.com/VadimDez/ng2-pdf-viewer.git"
},
"keywords": [
"angular",
"pdf",
"angular2",
"angular-pdf",
"angular2-pdf",
"ng2",
"ng2-pdf",
"angular2+",
"angular5"
],
"author": "Vadym Yatsyuk <vadym.yatsyuk@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/VadimDez/ng2-pdf-viewer/issues"
},
"homepage": "https://github.com/VadimDez/ng2-pdf-viewer#readme",
"peerDependencies": {
"@angular/core": ">=2.2.1",
"pdfjs-dist": "1.9.489",
"@types/pdfjs-dist": "^0.1.1"
},
"dependencies": {
"@types/pdfjs-dist": "^0.1.1",
"pdfjs-dist": "1.9.489"
},
"devDependencies": {
"@angular/animations": "^4.1.0",
"@angular/common": "^4.1.0",
"@angular/compiler": "^4.1.0",
"@angular/compiler-cli": "^4.1.0",
"@angular/core": "^4.1.0",
"@angular/forms": "^4.1.0",
"@angular/platform-browser": "^4.1.0",
"@angular/platform-browser-dynamic": "^4.1.0",
"@angular/platform-server": "^4.1.0",
"@types/jasmine": "^2.5.53",
"@types/node": "^8.0.7",
"@types/systemjs": "^0.20.2",
"codelyzer": "^3.1.1",
"concurrently": "^3.5.0",
"del": "^3.0.0",
"ember-cli-inject-live-reload": "^1.6.1",
"es6-shim": "^0.35.3",
"gulp": "^3.9.1",
"gulp-inline-ng2-template": "^4.0.0",
"gulp-sourcemaps": "^2.6.0",
"gulp-tslint": "^8.1.1",
"gulp-typescript": "^3.1.7",
"lite-server": "^2.3.0",
"material-design-lite": "^1.3.0",
"moment": "^2.18.1",
"reflect-metadata": "^0.1.10",
"rxjs": "^5.3.0",
"systemjs": "^0.20.14",
"systemjs-builder": "^0.16.9",
"ts-node": "^3.1.0",
"tslint": "^5.4.3",
"typescript": "~2.4.2",
"uglifyjs": "^2.4.11",
"zone.js": "^0.8.9"
},
"files": [
"dist"
]
}