forked from bpampuch/pdfmake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.2 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
{
"name": "pdfmake",
"version": "0.1.15",
"description": "Client/server side PDF printing in pure JavaScript",
"main": "src/printer.js",
"directories": {
"test": "tests"
},
"dependencies": {
"pdfkit": "~0.7.0",
"lodash": "~3.1.0",
"lodash-node": "~3.1.0"
},
"devDependencies": {
"grunt": "~0.4.2",
"grunt-cli": "~0.1.11",
"grunt-jsdoc": "~0.5.1",
"grunt-contrib-jshint": "~0.8.0",
"grunt-mocha-cov": "~0.3.0",
"grunt-text-replace": "~0.3.11",
"grunt-browserify": "~1.3.1",
"grunt-contrib-uglify": "~0.4.0",
"grunt-dump-dir": "~0.1.2",
"grunt-contrib-concat": "~0.3.0",
"sinon": "~1.12.2"
},
"scripts": {
"test": "grunt test"
},
"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"
]
}
}
}