forked from jspreadsheet/ce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.28 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": "jspreadsheet-ce",
"title": "The Javascript Spreadsheet",
"description": "Jspreadsheet is a lightweight, vanilla javascript plugin to create amazing web-based interactive data grids with spreadsheet like controls compatible with Excel, Google Spreadsheets and any other spreadsheet software.",
"repository": {
"type": "git",
"url": "https://github.com/jspreadsheet/ce.git"
},
"author": {
"name": "Contact <[email protected]>"
},
"keywords": [
"spreadsheet",
"online spreadsheet",
"jspreadsheet",
"jexcel",
"tables",
"table",
"excel",
"grid",
"javascript grid",
"grid-editor",
"data tables",
"data grid",
"spreadsheet"
],
"dependencies": {
"@jspreadsheet/formula": "^2.0.2",
"jsuites": "^5.3.0"
},
"devDependencies": {
"c8": "^7.13.0",
"chai": "^4.3.7",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.8.1",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"html-replace-webpack-plugin": "^2.6.0",
"html-webpack-plugin": "^5.5.0",
"jsdoc": "^4.0.2",
"jsdom": "^22.0.0",
"jsdom-global": "^3.0.2",
"mini-css-extract-plugin": "^2.7.6",
"mocha": "^10.2.0",
"mochawesome": "^7.1.3",
"prettier": "2.8.8",
"style-loader": "^3.3.1",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"react": "^18.2.0"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"version": "4.2.1",
"bugs": "https://github.com/jspreadsheet/ce/issues",
"homepage": "https://github.com/jspreadsheet/ce",
"download": "https://github.com/jspreadsheet/ce/archive/master.zip",
"scripts": {
"test": "mocha --recursive --require=mocha.config.cjs",
"test:watch": "mocha --recursive --watch --parallel --reporter min",
"test:coverage": "c8 mocha --recursive",
"build": "cross-env NODE_ENV=production webpack --config webpack.config.cjs",
"start": "npx webpack serve --history-api-fallback"
}
}