forked from lukevella/PptxGenJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.86 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
76
77
78
{
"name": "pptxgenjs",
"version": "3.5.0-beta",
"author": {
"name": "Brent Ely",
"url": "https://github.com/gitbrent/"
},
"description": "Create JavaScript PowerPoint Presentations",
"homepage": "https://gitbrent.github.io/PptxGenJS/",
"license": "MIT",
"main": "dist/pptxgen.cjs.js",
"module": "dist/pptxgen.es.js",
"files": [
"dist",
"types"
],
"types": "types",
"scripts": {
"build": "rollup -c",
"start": "gulp",
"ship": "gulp ship",
"defs": "gulp reactTestDefs",
"watch": "rollup -cw",
"doctoc": "./node_modules/doctoc/doctoc.js README.md"
},
"browser": {
"express": false,
"fs": false,
"https": false,
"image-size": false,
"os": false,
"path": false
},
"dependencies": {
"@types/node": "^14.14.10",
"https": "^1.0.0",
"image-size": "^0.9.3",
"jszip": "^3.5.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.0.1",
"doctoc": "^2.0.0",
"express": "^4.17.1",
"gulp": "^4.0.2",
"gulp-concat": "^2.6.1",
"gulp-delete-lines": "0.0.7",
"gulp-ignore": "^3.0.0",
"gulp-insert": "^0.5.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-uglify": "^3.0.2",
"rollup": "^2.34.2",
"rollup-plugin-typescript2": "^0.29.0",
"typescript": "^4.1.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gitbrent/PptxGenJS.git"
},
"keywords": [
"javascript-create-powerpoint",
"javascript-create-pptx",
"javascript-generate-pptx",
"javascript-powerpoint",
"javascript-pptx",
"js-create-powerpoint",
"js-create-pptx",
"js-generate-powerpoint",
"js-powerpoint",
"js-powerpoint-library",
"js-powerpoint-pptx",
"react-powerpoint",
"typescript-powerpoint"
],
"bugs": {
"url": "https://github.com/gitbrent/PptxGenJS/issues"
}
}