-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
42 lines (42 loc) · 1.04 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
{
"name": "ng-pdf",
"version": "1.0.2",
"description": "AngularJS component to display PDF files using PDF.js",
"main": "build/ngpdf.js",
"scripts": {
"build": "npm run build:prod && npm run build:dev",
"build:dev": "WEBPACK_ENV=dev webpack --progress --colors",
"build:prod": "WEBPACK_ENV=prod webpack -p --progress --colors",
"start": "WEBPACK_ENV=dev webpack --progress --colors --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Saissaken/ng-pdf.git"
},
"keywords": [
"angular",
"pdf",
"pdfjs",
"ngpdf",
"component"
],
"author": "saissaken",
"license": "MIT",
"bugs": {
"url": "https://github.com/Saissaken/ng-pdf/issues"
},
"homepage": "https://github.com/Saissaken/ng-pdf#readme",
"devDependencies": {
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"webpack": "^2.6.1"
},
"peerDependencies": {
"angular": "^1.6.4",
"pdfjs-dist": "^1.8.428"
},
"engines": {
"node": ">=4.3.2"
}
}