-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1023 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
34
35
36
37
38
39
40
41
42
43
{
"name": "mini-spreadsheet",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"test:jest": "jest",
"test:jest:watch": "jest --watchAll",
"test": "mocha './{,!(node_modules)/**/}*.test.js'",
"test:vitest": "vitest --coverage",
"dev": "vite",
"build": "vite build",
"preview": "vite preview"
},
"dependencies": {
"file-reader": "^1.1.1",
"js-yaml": "^4.1.0",
"yaml": "^2.3.4"
},
"devDependencies": {
"chai": "^4.3.10",
"jest": "^29.7.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"vite": "^5.0.8"
},
"description": "A simple spreadsheet to run in your browser",
"main": "main.js",
"repository": {
"type": "git",
"url": "git+https://github.com/chezearth-personal/mini-spreadsheet.git"
},
"keywords": [
"spreadsheet",
"mini"
],
"author": "Charles W Rethman",
"license": "MIT",
"bugs": {
"url": "https://github.com/chezearth-personal/mini-spreadsheet/issues"
},
"homepage": ".index.html"
}