forked from VadimDez/ng2-pdf-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.34 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
{
"name": "ng2-pdf-viewer",
"version": "1.0.1",
"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": "concurrently --kill-others \"gulp watch\" \"lite-server\""
},
"repository": {
"type": "git",
"url": "git+https://[email protected]/VadimDez/ng2-pdf-viewer.git"
},
"keywords": [
"angular",
"pdf",
"angular2",
"angular-pdf",
"angular2-pdf",
"ng2",
"ng2-pdf"
],
"author": "Vadym Yatsyuk <[email protected]>",
"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.7.244"
},
"dependencies": {
"@types/pdf": "0.0.31",
"pdfjs-dist": "^1.7.244"
},
"devDependencies": {
"@angular/common": "^2.2.1",
"@angular/compiler": "^2.2.1",
"@angular/compiler-cli": "^2.2.1",
"@angular/core": "^2.2.1",
"@angular/forms": "^2.2.1",
"@angular/platform-browser": "^2.2.1",
"@angular/platform-browser-dynamic": "^2.2.1",
"@angular/platform-server": "^2.2.1",
"@types/jasmine": "^2.5.41",
"@types/node": "^7.0.5",
"@types/systemjs": "^0.20.0",
"codelyzer": "^2.0.0-beta.4",
"concurrently": "^3.1.0",
"del": "^2.2.2",
"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.4.0",
"gulp-tslint": "^7.1.0",
"gulp-typescript": "^3.1.4",
"lite-server": "^2.2.0",
"material-design-lite": "^1.3.0",
"moment": "^2.17.1",
"reflect-metadata": "^0.1.9",
"rxjs": "^5.1.0",
"systemjs": "^0.20.5",
"systemjs-builder": "^0.16.2",
"ts-node": "^2.0.0",
"tslint": "^4.4.2",
"typescript": "^2.1.6",
"typings": "^2.1.0",
"uglifyjs": "^2.4.10",
"zone.js": "^0.7.6"
},
"files": [
"dist"
]
}