-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
45 lines (45 loc) · 1.1 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
{
"name": "pdf-officegen",
"version": "3.0.0",
"description": "Converts one or more PDFs into a powerpoint or word document with one pdf page per slide/page",
"main": "index.js",
"scripts": {
"lint": "standard",
"fix": "standard --fix",
"test": "standard && DEBUG='app:*' ava **/*-test.js | tap-diff",
"testWin": "standard && ava **/*-test.js | tap-diff"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SpiderStrategies/pdf-officegen.git"
},
"keywords": [
"pdf",
"powerpoint",
"word",
"office",
"png",
"convert",
"image",
"ppt",
"pptx"
],
"author": "Nathan Good (codecounselor)",
"license": "MIT",
"bugs": {
"url": "https://github.com/SpiderStrategies/pdf-officegen/issues"
},
"homepage": "https://github.com/SpiderStrategies/pdf-officegen#readme",
"devDependencies": {
"ava": "^0.25.0",
"standard": "^11.0.1",
"tap-diff": "^0.1.1"
},
"dependencies": {
"bluebird": "^3.5.2",
"debug": "^3.2.6",
"eventemitter2": "^2.1.3",
"rimraf": "^2.6.2",
"spider-officegen": "2.0.0"
}
}