-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.31 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
{
"name": "@fslab/fsspreadsheet",
"version": "6.2.0",
"description": "Minimal spreadsheet creation and manipulation using exceljs io.",
"type": "module",
"main": "Xlsx.js",
"scripts": {
"pretest": "dotnet fable tests/FsSpreadsheet.Tests --noCache -o tests/FsSpreadsheet.Tests/js",
"test": "node tests/FsSpreadsheet.Tests/js/Main.js",
"pretestexceljs": "dotnet fable tests/FsSpreadsheet.Js.Tests --noCache -o tests/FsSpreadsheet.Js.Tests/js",
"testexceljs": "node tests/FsSpreadsheet.Js.Tests/js/Main.js",
"pretestjs": "dotnet fable src/FsSpreadsheet.Js --noCache -o tests/JS/FsSpreadsheet.Js",
"testjs": "mocha tests/JS",
"prebundle": "mkdir dist/js & dotnet fable clean --extension .js --yes -o dist/js",
"bundle": "dotnet fable src/FsSpreadsheet.Js -o dist/js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CSBiology/FsSpreadsheet.git"
},
"author": "Kevin Frey",
"contributors": [
"Heinrich Lukas Weil",
"Oliver Maus",
"Kevin Schneider",
"Timo Mühlhaus"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/CSBiology/FsSpreadsheet/issues"
},
"homepage": "https://github.com/CSBiology/FsSpreadsheet#readme",
"devDependencies": {
"mocha": "^10.2.0"
},
"dependencies": {
"@nfdi4plants/exceljs": "^0.3.0"
}
}