-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 882 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
{
"name": "pdf-invoice-simple",
"description": "A Simple PDF Invoice Template",
"main": "dist/pdf-invoice-simple.js",
"version": "0.4.5",
"author": "Orbin",
"keywords": [
"pdf",
"invoice",
"simple"
],
"repository": {
"type": "git",
"url": "https://github.com/orbin-ch/pdf-invoice-simple"
},
"license": "MIT",
"devDependencies": {
"http-server": "^0.9.0",
"jspm": "^0.16.52"
},
"scripts": {
"start": "http-server ./",
"build": "jspm bundle src/index.js dist/pdf-invoice-simple.js"
},
"jspm": {
"dependencies": {
"moment": "npm:moment@^2.17.1",
"pdfmake": "github:bpampuch/pdfmake@^0.1.25"
},
"devDependencies": {
"babel": "npm:babel-core@^5.8.24",
"babel-runtime": "npm:babel-runtime@^5.8.24",
"core-js": "npm:core-js@^1.1.4",
"jquery": "npm:jquery@^3.1.1"
}
}
}