forked from bpampuch/pdfmake
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.31 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
{
"name": "pdfmake",
"version": "0.1.20",
"description": "Client/server side PDF printing in pure JavaScript",
"main": "src/printer.js",
"directories": {
"test": "tests"
},
"dependencies": {
"pdfkit": "strokovnjaka/pdfkit#master",
"lodash": "^3.1.0"
},
"devDependencies": {
"expose-loader": "^0.6.0",
"grunt": "^1.0.1",
"grunt-dump-dir": "^0.1.2",
"gulp": "^3.8.11",
"gulp-jshint": "^1.10.0",
"gulp-rename": "^1.2.2",
"gulp-replace": "^0.5.3",
"gulp-sourcemaps": "^1.5.2",
"gulp-spawn-mocha": "^2.0.1",
"gulp-uglify": "^1.2.0",
"gulp-util": "^3.0.4",
"json-loader": "^0.5.1",
"sinon": "~1.12.2",
"string-replace-webpack-plugin": "0.0.1",
"webpack": "^1.8.9",
"webpack-stream": "^3.1.0"
},
"scripts": {
"test": "gulp"
},
"repository": {
"type": "git",
"url": "git://github.com/bpampuch/pdfmake.git"
},
"keywords": [
"pdf",
"javascript",
"printing",
"layout"
],
"author": "Bartek Pampuch <bartosz.pampuch@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bpampuch/pdfmake/issues"
},
"homepage": "https://bpampuch.github.io/pdfmake",
"config": {
"blanket": {
"pattern": "src",
"data-cover-never": [
"node_modules",
"tests"
]
}
}
}