forked from foliojs/pdfkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.78 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
67
68
69
70
71
72
73
74
75
{
"name": "pdfkit",
"description": "A PDF generation library for Node.js",
"keywords": [
"pdf",
"pdf writer",
"pdf generator",
"graphics",
"document",
"vector"
],
"version": "0.8.3",
"homepage": "http://pdfkit.org/",
"author": {
"name": "Devon Govett",
"email": "[email protected]",
"url": "http://badassjs.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/devongovett/pdfkit.git"
},
"bugs": "http://github.com/devongovett/pdfkit/issues",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.7.0",
"blob-stream": "^0.1.2",
"brace": "^0.2.1",
"brfs": "~2.0.1",
"browserify": "^3.39.0",
"codemirror": "~3.20.0",
"coffee-script": ">=1.0.1",
"eslint": "^5.3.0",
"iconv-lite": "^0.4.13",
"jade": "~1.1.5",
"jest": "^23.4.2",
"markdown": "~0.5.0",
"rollup": "^0.65.0",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-cpy": "^1.0.0"
},
"dependencies": {
"fontkit": "^1.0.0",
"linebreak": "^0.3.0",
"png-js": ">=0.1.0"
},
"scripts": {
"prepublishOnly": "npm run build",
"build": "rollup -c",
"browser-demo": "browserify demo/browser.js > demo/bundle.js",
"pdf-guide": "node docs/generate.js",
"website": "node docs/generate_website.js",
"docs": "npm run pdf-guide && npm run website && npm run browser-demo",
"test": "jest -i"
},
"main": "js/pdfkit.js",
"module": "js/pdfkit.es5.js",
"esnext": "js/pdfkit.esnext.js",
"browserify": {
"transform": [
"brfs"
]
},
"engine": [
"node >= v6.0.0"
],
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"<rootDir>/demo/"
],
"testURL": "http://localhost/"
}
}