forked from gitbrent/PptxGenJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.79 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
{
"name": "bulletpoints",
"version": "0.16.0",
"author": {
"name": "Steve Genoud",
"url": "https://github.com/sgenoud/"
},
"description": "JavaScript PowerPoint Library",
"homepage": "https://gitbrent.github.io/PptxGenJS/",
"license": "MIT",
"main": "dist/bulletpoints.cjs.js",
"browser": {
"express": false,
"fs": false,
"https": false,
"image-size": false,
"jsdom": false,
"os": false,
"path": false
},
"module": "dist/bulletpoints.es.js",
"files": [
"dist",
"types"
],
"types": "types",
"scripts": {
"build": "rollup -c",
"prepublish": "rollup -c",
"watch": "rollup -cw"
},
"dependencies": {
"calc-units": "0.2.0",
"https": "^1.0.0",
"image-size": "^0.8.1",
"jsdom": "^15.1.0",
"jszip": "^3.2.2"
},
"devDependencies": {
"@types/jszip": "^3.1.6",
"@types/node": "^12.7.5",
"doctoc": "^1.4.0",
"express": "^4.17.1",
"prettier": "^1.19.1",
"rollup": "^1.21.4",
"rollup-plugin-banner": "^0.2.1",
"rollup-plugin-clear": "^2.0.7",
"rollup-plugin-terser": "^5.2.0",
"rollup-plugin-typescript2": "^0.21.2",
"tslint": "^5.20.1",
"typescript": "3.3.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sgenoud/bulletpoints.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/sgenoud/bulletpoints/issues"
}
}