-
Notifications
You must be signed in to change notification settings - Fork 69
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.54 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.54 KB
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
{
"name": "@xsanisty/calxjs",
"version": "3.0.0",
"description": "Spreadsheet Calculation Engine",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/calx.esm.js",
"require": "./dist/index.js"
},
"./jquery": "./dist/jquery.calx.js"
},
"files": [
"dist/index.js",
"dist/jquery.calx.js",
"dist/index.d.ts"
],
"dependencies": {
"@formulajs/formulajs": "^3.1.1",
"chevrotain": "^11.1.1",
"ssf": "^0.11.2"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/jquery": "^3.5.33",
"@types/node": "^20.11.19",
"browserify": "^17.0.0",
"jest": "^29.5.1",
"ts-jest": "^29.1.2",
"ts-loader": "^9.5.1",
"typescript": "^5.6.3",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4"
},
"scripts": {
"build": "webpack && webpack --config webpack.jquery.config.js",
"build:core": "webpack",
"build:jquery": "webpack --config webpack.jquery.config.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:performance": "jest test/performance.test.ts --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xsanisty/calx.js.git"
},
"keywords": [
"calx",
"excel",
"spreadsheet",
"engine",
"calculation"
],
"author": "Xsanisty",
"license": "MIT",
"bugs": {
"url": "https://github.com/xsanisty/calx.js/issues"
},
"homepage": "https://xsanisty.com/project/calxjs",
"directories": {
"test": "test"
}
}