forked from airpptx/airppt-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 917 Bytes
/
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": "airppt-parser",
"version": "1.0.8",
"description": "Parses Powerpoint (PPTX) to Standardized JSON Objects",
"main": "js/main.js",
"types": "js/main.d.ts",
"scripts": {
"build": "tsc",
"test": "./tests/test.js"
},
"repository": {
"type": "airppt-parser",
"url": "https://github.com/airpptx/airppt-parser"
},
"keywords": [
"airppt",
"parser",
"pptx",
"powerpoint",
"html",
"webconvert",
"json",
"ppt"
],
"author": "Raviteja Lingineni",
"license": "MIT",
"dependencies": {
"@types/node": "^10.12.9",
"airppt-models": "^1.0.8",
"jszip": "^3.1.5",
"module-alias": "^2.1.0",
"string-template": "^1.0.0",
"xml2js-es6-promise": "^1.1.1"
},
"_moduleAliases": {
"@helpers": "./js/helpers/",
"@models": "./js/models/",
"@generators": "./js/generators/",
"@renderers": "./js/renderers/"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^5.2.0"
}
}