forked from gitbrent/PptxGenJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.52 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
{
"name": "pptxgenjs",
"version": "2.6.0-beta",
"author": {
"name": "Brent Ely",
"url": "https://github.com/gitbrent/"
},
"description": "JavaScript PowerPoint Library",
"homepage": "https://gitbrent.github.io/PptxGenJS/",
"license": "MIT",
"main": "dist/pptxgen.min.js",
"types": "dist/pptxgen.d.ts",
"dependencies": {
"express": "^4.16.4",
"https": "^1.0.0",
"image-size": "^0.7.2",
"jquery": "^3.3.1",
"jsdom": "^14.1.0",
"jszip": "^3.1.5"
},
"devDependencies": {
"gulp": "^4.0.0",
"gulp-concat": "^2.6.1",
"gulp-ignore": "^2.0.2",
"gulp-insert": "^0.5.0",
"gulp-sourcemaps": "^2.6.4",
"gulp-uglify": "^3.0.1"
},
"browser": {
"express": false,
"fs": false,
"https": false,
"image-size": false,
"jsdom": false,
"os": false,
"path": false
},
"directories": {
"example": "examples",
"libs": "dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gitbrent/PptxGenJS.git"
},
"keywords": [
"javascript-create-powerpoint",
"javascript-create-pptx",
"javascript-generate-pptx",
"javascript-powerpoint",
"javascript-powerpoint-charts",
"javascript-powerpoint-online",
"javascript-pptx",
"js-create-powerpoint",
"js-create-pptx",
"js-generate-powerpoint",
"js-generate-powerpoint-charts",
"js-powerpoint",
"js-powerpoint-pptx",
"js-powerpoint-library"
],
"bugs": {
"url": "https://github.com/gitbrent/PptxGenJS/issues"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "./node_modules/gulp/bin/gulp.js"
}
}