-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.9 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-surgeon",
"homepage": "http://github.com/rse/pptx-surgeon",
"description": "Microsoft PowerPoint OpenXML File Surgeon",
"version": "0.9.9",
"license": "MIT",
"author": {
"name": "Dr. Ralf S. Engelschall",
"email": "rse@engelschall.com",
"url": "http://engelschall.com"
},
"keywords": [
"pptx", "powerpoint", "openxml"
],
"repository": {
"type": "git",
"url": "git://github.com/rse/pptx-surgeon.git"
},
"bugs": {
"url": "http://github.com/rse/pptx-surgeon/issues"
},
"bin": {
"pptx-surgeon": "./pptx-surgeon.js"
},
"devDependencies": {
"babel-eslint": "10.1.0",
"eslint": "7.17.0",
"eslint-config-standard": "16.0.2",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-node": "11.1.0",
"npm-run-all": "4.1.5",
"pkg": "4.4.9",
"shx": "0.3.3"
},
"dependencies" : {
"yargs": "16.2.0",
"chalk": "4.1.0",
"execa": "5.0.0",
"strip-ansi": "6.0.0",
"js-yaml": "4.0.0",
"jszip": "3.5.0",
"tmp": "0.2.1",
"rimraf": "3.0.2",
"mkdirp": "1.0.4",
"slimdom": "2.3.2",
"slimdom-sax-parser": "1.4.0",
"fontoxpath": "3.14.2",
"xml-formatter": "2.4.0"
},
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"prepublishOnly": "npm-run-all -s lint",
"build": "npm-run-all -s lint package",
"clean": "npm-run-all -s package:clean",
"lint": "eslint --config eslint.yaml pptx-surgeon*.js",
"package": "npm-run-all -s package:gen package:mv:lnx package:mv:win package:mv:mac",
"package:gen": "pkg -t node14-linux-x64,node14-win-x64,node14-macos-x64 .",
"package:mv:lnx": "shx mv pptx-surgeon-linux pptx-surgeon-lnx-x64",
"package:mv:win": "shx mv pptx-surgeon-win.exe pptx-surgeon-win-x64.exe",
"package:mv:mac": "shx mv pptx-surgeon-macos pptx-surgeon-mac-x64",
"package:clean": "rm -f pptx-surgeon-lnx-x64 pptx-surgeon-win-x64.exe pptx-surgeon-mac-x64",
"test": "node pptx-surgeon.js -v2 -r -m 'msg CI Text=Arial' -o sample-patched.pptx sample.pptx"
}
}