-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 2.08 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
{
"name": "@jspreadsheet/formula",
"title": "The Spreadsheet Formula Parser",
"description": "Jspreadsheet formula is a JavaScript software to parse spreadsheet-like formulas.",
"repository": {
"type": "git",
"url": "https://github.com/jspreadsheet/packages.git"
},
"author": {
"name": "Contact <[email protected]>"
},
"keywords": [
"spreadsheet",
"online spreadsheet",
"jspreadsheet",
"jexcel",
"tables",
"table",
"excel",
"google spreadsheet",
"spreadsheet formulas",
"grid",
"grid-editor",
"data-table",
"data-grid",
"data-spreadsheet"
],
"main": "dist/index.js",
"version": "2.0.1",
"scripts": {
"build": "npx webpack --mode=production --config webpack.config.js",
"start": "npx webpack serve --history-api-fallback",
"test": "mocha --recursive --require=mocha.config.js",
"test:watch": "mocha --recursive --watch --parallel --reporter min --require=mocha.config.js",
"test:browser": "mocha --recursive --reporter mochawesome --config mocha.config.js",
"test:coverage": "c8 mocha --recursive --config mocha.config.js",
"format": "npm run prettier:fix && npm run lint:fix",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write ."
},
"license": "MIT",
"devDependencies": {
"c8": "^7.13.0",
"chai": "^4.3.7",
"mocha": "^10.2.0",
"mochawesome": "^7.1.3",
"webpack": "^5.82.1",
"webpack-cli": "^5.1.1",
"webpack-dev-server": "^4.15.0",
"prettier": "2.8.8",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0"
},
"dependencies": {
"@formulajs/formulajs": "^4.2.0"
},
"bugs": "https://github.com/jspreadsheet/formula/issues",
"homepage": "https://github.com/jspreadsheet/formula",
"download": "https://github.com/jspreadsheet/formula/archive/master.zip"
}