-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
70 lines (70 loc) · 1.96 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
{
"name": "ppt-png",
"version": "2.1.4",
"description": "Convert ppt to image (png,jpg)",
"files": [
"src/converter.js",
"src/pdf2png.js",
"src/ppt2pdf.js"
],
"source": "src/converter.js",
"main": "src/converter.js",
"repository": {
"type": "git",
"url": "https://github.com/w3nl/ppt-png.git"
},
"keywords": [
"javascript",
"ppt",
"pptx",
"powerpoint",
"png",
"jpg",
"jpeg"
],
"author": {
"name": "Pieter Wigboldus",
"url": "https://hckr.news/"
},
"bugs": {
"url": "https://github.com/w3nl/ppt-png/issues"
},
"license": "MIT",
"homepage": "https://github.com/w3nl/ppt-png#readme",
"scripts": {
"lint": "eslint src/*.js --config .eslintrc",
"lint:report": "eslint src/*.js --config .eslintrc -f json -o report.json",
"lint:fix": "eslint src/*.js --config .eslintrc --fix",
"test": "c8 node --test src/__tests__/converter.test.js",
"cpd": "node_modules/jscpd/bin/jscpd src",
"vulnerabilities": "npm audit --production"
},
"devDependencies": {
"@hckrnews/eslint-config": "^3.0.0",
"c8": "^10.0.0",
"eslint": "^8.15.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-html": "^8.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^50.0.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-n": "^17.9.0",
"eslint-plugin-prettier": "^5.0.0",
"esm": "^3.2.25",
"jscpd": "^4.0.0"
},
"dependencies": {
"@hckrnews/converter": "^0.5.2",
"@hckrnews/pdf2png": "^0.3.4",
"@hckrnews/ppt2pdf": "^0.3.4"
},
"engines": {
"node": ">= 18"
},
"type": "module",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/w3nl"
}
}