-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.71 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.71 KB
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
{
"name": "@xoxoharsh/multiparser",
"version": "1.0.0",
"description": "A Text extracting package docx, pdf and pptx files",
"main": "index.js",
"type": "module",
"private": false,
"scripts": {
"start": "node index.js",
"test": "node tests/test.js",
"version:patch": "npm version patch && git push && git push --tags && npm publish --access public",
"version:minor": "npm version minor && git push && git push --tags && npm publish --access public",
"version:major": "npm version major && git push && git push --tags && npm publish --access public",
"publish:patch": "git add . && git commit -m \"patch update\" && npm run version:patch",
"publish:minor": "git add . && git commit -m \"minor update\" && npm run version:minor",
"publish:major": "git add . && git commit -m \"major update\" && npm run version:major"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Rajatt09/Multiparser-Package"
},
"author": "Yash Mittal, Rajat Bhati, Harsh Sharma",
"contributors": [
{
"name": "Yash Mittal",
"email": "mittalyas1234@gmail.com"
},
{
"name": "Rajat Bhati",
"email": "rajatbhati9559@gmail.com"
},
{
"name": "Harsh Sharma",
"email": "harshsharma20503@gmail.com"
}
],
"keywords": [
"parser",
"docx",
"pdf",
"pptx",
"text-extraction",
"document-parser"
],
"homepage": "https://github.com/Rajatt09/Multiparser-Package#readme",
"license": "ISC",
"dependencies": {
"jszip": "^3.10.1",
"mammoth": "^1.8.0",
"pdf.js-extract": "^0.2.1",
"xml2js": "^0.6.2"
},
"files": [
"index.js",
"scripts/",
"README.md"
],
"engines": {
"node": ">=14.0.0"
}
}