-
Notifications
You must be signed in to change notification settings - Fork 246
/
Copy pathpackage.json
66 lines (66 loc) · 1.79 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
{
"name": "angular-pdf",
"description": "An Angularjs directive <ng-pdf> to display PDF in the browser with PDFJS.",
"homepage": "https://github.com/sayanee/angular-pdf#readme",
"version": "2.0.0",
"main": "dist/angular-pdf.js",
"author": {
"email": "[email protected]",
"name": "Sayanee"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sayanee/angular-pdf.git"
},
"bugs": {
"url": "https://github.com/sayanee/angular-pdf/issues"
},
"keywords": [
"angular",
"directive",
"pdf"
],
"devDependencies": {
"angular-mocks": "^1.6.1",
"babel-cli": "^6.18.0",
"babel-core": "^6.21.0",
"babel-eslint": "^7.2.2",
"babel-loader": "^6.2.10",
"babel-plugin-istanbul": "^4.1.1",
"babel-preset-latest": "^6.16.0",
"bumped": "^0.10.3",
"eslint": "^3.12.2",
"eslint-config-angular": "^0.5.0",
"eslint-plugin-angular": "^2.3.0",
"html-webpack-plugin": "^2.24.1",
"jasmine-core": "^2.4.1",
"karma": "^1.3.0",
"karma-coverage": "^1.1.1",
"karma-jasmine": "^1.1.0",
"karma-ng-html2js-preprocessor": "^1.0.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.3",
"ng-annotate-loader": "^0.2.0",
"phantomjs-prebuilt": "^2.1.4",
"rimraf": "^2.6.1",
"webpack": "^2.4.1",
"webpack-dev-server": "^2.4.2"
},
"engines": {
"node": ">=4.3.2"
},
"scripts": {
"build": "webpack --progress --profile",
"build-min": "webpack --progress --profile",
"clean": "rimraf dist",
"release": "bumped release",
"start": "webpack-dev-server --history-api-fallback --inline --progress",
"test": "karma start"
},
"license": "MIT",
"peerDependencies": {
"angular": "^1.5.0",
"pdfjs-dist": "^1.6.0"
}
}