-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 741 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 741 Bytes
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
{
"type": "module",
"author": "Glenn Streetman",
"name": "copy-excel-chart",
"description": "Copy .xlsx charts between .xlsx files.",
"main": "copy-excel-chart.js",
"version": "1.0.23",
"dependencies": {
"adm-zip": "^0.5.5",
"xml2js": "^0.4.23"
},
"devDependencies": {
"@types/node": "^16.7.4",
"typescript": "^4.4.2"
},
"scripts": {
"tscd": "npx tsc -w -p tsconfig.json"
},
"repository": {
"type": "git",
"url": "https://github.com/GlennStreetman/copyExcelChart"
},
"license": "Apache-2.0",
"keywords": [
"excel",
"xlsx",
"chart",
"graph",
"office",
"spreadsheet"
]
}