forked from formulajs/formulajs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.76 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/formulajs",
"version": "1.0.0",
"description": "JavaScript implementation of most Microsoft Excel formula functions",
"type": "module",
"main": "./lib/cjs",
"module": "./lib/esm",
"unpkg": "./lib/browser/formula.min.js",
"jsdelivr": "./lib/browser/formula.min.js",
"exports": {
".": {
"require": "./lib/cjs/index.js",
"import": "./lib/esm/index.js"
},
"./package.json": "./package.json",
"./*": {
"require": "./lib/cjs/*",
"import": "./lib/esm/*"
}
},
"files": [
"lib",
"types"
],
"types": "./types/index.d.ts",
"scripts": {
"prebuild": "npm run prettier && npm run lint && npm run test:coverage && npm run types",
"build": "rollup -c",
"format": "npm run prettier:fix && npm run lint:fix",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"stats": "node ./bin/implementation-stats.js",
"test": "mocha --recursive",
"test:browser": "mocha --recursive --reporter mochawesome",
"test:coverage": "c8 mocha --recursive",
"test:watch": "mocha --recursive --watch --parallel --reporter min",
"types": "tsc"
},
"dependencies": {
"bessel": "^1.0.2",
"jstat": "^1.9.6"
},
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.0",
"c8": "^7.12.0",
"chai": "^4.3.7",
"cli-table3": "^0.6.3",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"mocha": "^10.2.0",
"mochawesome": "^7.1.3",
"prettier": "^2.8.3",
"rollup": "^3.12.0",
"typescript": "^4.9.4"
}
}