-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
67 lines (67 loc) · 1.85 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
{
"name": "pptx-automizer",
"version": "0.6.2",
"description": "A template based pptx generator",
"repository": {
"type": "git",
"url": "git+https://github.com/singerla/pptx-automizer.git"
},
"author": "Thomas Singer <tsinger@gmx.de> (github.com/singerla)",
"license": "MIT",
"private": false,
"scripts": {
"build": "tsc",
"dev": "nodemon -e ts --exec 'ts-node' src/dev.ts",
"test": "npx jest",
"test-coverage": "npx jest --coverage",
"lint": "eslint '*/**/*.{js,ts,tsx}' --fix",
"prettier": "prettier --config .prettierrc 'src/**/*.ts' --write"
},
"files": [
"dist",
"README"
],
"main": "dist/index.js",
"types": "dist/index.d.js",
"keywords": [
"js-create-powerpoint",
"js-create-pptx",
"js-generate-powerpoint",
"js-pptx",
"js-produce-powerpoint",
"js-powerpoint",
"powerpoint",
"powerpoint-charts",
"powerpoint-presentation",
"powerpoint-automation",
"powerpoint-generator",
"pptx",
"presentations"
],
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/node": "^18.11.18",
"@types/xmldom": "^0.1.34",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.4.0",
"nodemon": "^2.0.20",
"prettier": "^2.8.3",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typedoc": "^0.23.24",
"typescript": "^4.9.4"
},
"dependencies": {
"@xmldom/xmldom": "^0.9.4",
"extract-zip": "^2.0.1",
"jszip": "^3.10.1",
"pptxgenjs": "^3.12.0",
"regexp.escape": "^1.1.0",
"slugify": "^1.6.6"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}