forked from formulajs/formulajs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.87 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
{
"name": "@formulajs/formulajs",
"version": "3.1.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"
],
"scripts": {
"prebuild": "npm run prettier && npm run lint && npm run test:coverage",
"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",
"test:browser": "mocha --reporter mochawesome",
"test:coverage": "c8 mocha",
"test:watch": "mocha --watch --parallel --reporter min"
},
"dependencies": {
"bessel": "^1.0.2",
"jstat": "^1.9.5"
},
"devDependencies": {
"@babel/preset-env": "^7.16.11",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"c8": "^7.11.0",
"cli-table3": "^0.6.1",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"mocha": "^9.2.0",
"mochawesome": "^7.0.1",
"prettier": "^2.5.1",
"rollup": "^2.67.0",
"rollup-plugin-terser": "^7.0.2",
"should": "^13.2.3"
}
}