-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
60 lines (60 loc) · 1.45 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
{
"name": "pptx-compose",
"version": "0.4.0",
"description": "PPTX parser to JSON format",
"main": "lib/index.js",
"bin": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"dev": "tsc --watch",
"build": "tsc",
"test": "jest",
"test:coverage": "jest --coverage",
"test:report": "jest --coverage --coverageReporters=text-lcov | coveralls",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shobhitsharma/pptx-compose.git"
},
"keywords": [
"pptx",
"pptx-composer",
"pptx-json",
"pptx-xml",
"ppt",
"pptx-to-json",
"pptx-to-xml"
],
"author": "Shobhit Sharma <[email protected]> (https://shobh.it/)",
"engines": {
"node": ">=10.0.0"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/shobhitsharma/pptx-compose/issues"
},
"homepage": "https://github.com/shobhitsharma/pptx-compose#readme",
"dependencies": {
"commander": "5.1.0",
"jszip": "3.4.0",
"xml2js": "0.4.23"
},
"devDependencies": {
"@semantic-release/git": "^9.0.0",
"@types/async": "^3.2.3",
"@types/jest": "^25.2.3",
"@types/node": "^14.0.11",
"@types/xml2js": "^0.4.5",
"coveralls": "^3.1.0",
"jest": "^26.0.1",
"jest-circus": "^26.0.1",
"semantic-release": "^17.0.8",
"semantic-release-gitmoji": "^1.3.4",
"ts-jest": "^26.1.0",
"typescript": "^3.9.5"
}
}