forked from winkerVSbecks/angular-pdf-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.17 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.17 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
{
"name": "@resolving/angular-pdf-viewer",
"version": "0.2.9",
"description": "An AngularJS directive to display PDFs",
"author": "Varun Vachhar",
"contributors": [
{
"name": "Chris Wood",
"email": "contact@cpcwood.com",
"url": "https://github.com/cpcwood"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/resolving/angular-pdf-viewer.git"
},
"main": "./index.js",
"files": [
"src",
"index.js",
"package.json",
"yarn.lock",
"README.md",
"LICENSE"
],
"browser": true,
"scripts": {
"start": "webpack-dev-server --config ./webpack.config.js"
},
"dependencies": {
"assert": "^2.0.0",
"browserify-zlib": "^0.2.0",
"buffer": "^6.0.3",
"core-js": "^2.0.0",
"pdfjs-dist": "^1.9.426",
"stream-browserify": "^3.0.0",
"util": "^0.12.4"
},
"peerDependencies": {
"angular": "^1.3.0"
},
"devDependencies": {
"angular": "~1.3.0",
"html-webpack-plugin": "^5.3.2",
"node-polyfill-webpack-plugin": "^1.1.4",
"webpack": "^5.52.1",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.3.0",
"webpack-merge": "^5.8.0"
}
}