-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
43 lines (43 loc) · 1002 Bytes
/
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
{
"name": "pdf-invoice",
"version": "1.0.2",
"description": "A Phantom dep. free PDF invoice generator built with PDFKit",
"main": "dist/index.js",
"scripts": {
"test": "node tests/full_generation.js",
"pre-publish": "babel lib/ --out-dir dist/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Astrocoders/node-pdf-invoice.git"
},
"keywords": [
"pdfkit",
"invoice",
"pdf",
"invoice",
"invoice",
"pdf"
],
"author": "Gabriel Rubens <https://twitter.com/_gabrielrubens>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Astrocoders/node-pdf-invoice/issues"
},
"homepage": "https://github.com/Astrocoders/node-pdf-invoice#readme",
"dependencies": {
"moment": "^2.14.1",
"numeral": "^1.5.3",
"pdfkit": "^0.8.0"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-core": "^6.14.0",
"babel-preset-es2015": "^6.14.0"
},
"babel": {
"presets": [
"es2015"
]
}
}