-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 917 Bytes
/
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
{
"name": "xlsx-spec-models",
"version": "0.8.3",
"description": "TypeScript Open XML XLSX format models with DOM read/write methods",
"author": "TeamworkGuy2",
"homepage": "https://github.com/TeamworkGuy2/xlsx-spec-models",
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/TeamworkGuy2/xlsx-spec-models.git"
},
"dependencies": {
"@twg2/dom-builder": "~0.11.0"
},
"devDependencies": {
"@types/chai": "~4.2.4",
"@types/jsdom": "~16.2.14",
"@types/mocha": "~5.2.7",
"@types/node": "^12.0.0",
"@types/xml2js": "^0.4.7",
"jsdom": "~19.0.0",
"chai": "~4.2.0",
"mocha": "~5.2.0",
"ts-promises": "~0.9.0",
"typescript": "~4.4.4",
"xml2js": "~0.4.23"
},
"scripts": {
"test": "node node_modules/mocha/bin/_mocha -u tdd --recursive",
"build": "node node_modules/typescript/bin/tsc"
}
}