forked from formulajs/formulajs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.02 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
68
69
70
71
72
{
"name": "@formulajs/formulajs",
"version": "4.3.1",
"description": "JavaScript implementation of most Microsoft Excel formula functions",
"author": "Formulajs",
"homepage": "https://github.com/formulajs/formulajs#readme",
"repository": {
"type": "git",
"url": "https://github.com/formulajs/formulajs.git"
},
"bugs": {
"url": "https://github.com/formulajs/formulajs/issues"
},
"license": "MIT",
"type": "module",
"bin": {
"formulajs": "./bin/cli.js"
},
"main": "./lib/cjs",
"module": "./lib/esm",
"unpkg": "./lib/browser/formula.min.js",
"jsdelivr": "./lib/browser/formula.min.js",
"exports": {
".": {
"require": "./lib/cjs/index.cjs",
"import": "./lib/esm/index.mjs"
},
"./package.json": "./package.json"
},
"files": [
"bin/cli.js",
"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.22.10",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-terser": "^0.4.3",
"c8": "^8.0.1",
"chai": "^4.3.7",
"cli-table3": "^0.6.3",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"mocha": "^10.2.0",
"mochawesome": "^7.1.3",
"prettier": "^3.0.1",
"rollup": "^3.28.0",
"typescript": "^5.1.6"
}
}