-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
61 lines (61 loc) · 1.66 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
{
"name": "@borgar/fx",
"version": "4.8.0",
"description": "Utilities for working with Excel formulas",
"main": "dist/fx.js",
"types": "dist/fx.d.ts",
"module": "lib/index.js",
"exports": {
".": {
"require": "./dist/fx.js",
"default": "./lib/index.js"
}
},
"scripts": {
"preversion": "npm test && npm run lint",
"version": "npm run build",
"lint": "eslint lib/*.js",
"test": "tape lib/*.spec.js | tap-min",
"build:all": "npm run build:types && npm run build:docs && npm run build",
"build:types": "jsdoc -c tsd.json lib>dist/fx.d.ts",
"build:docs": "echo '# _Fx_ API\n'>docs/API.md; jsdoc -t node_modules/@borgar/jsdoc-tsmd -d console lib>>docs/API.md",
"build": "NODE_ENV=production rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/borgar/fx.git"
},
"bugs": {
"url": "https://github.com/borgar/fx/issues"
},
"browserslist": [
"defaults",
"not IE 11",
"maintained node versions"
],
"keywords": [
"excel",
"xlsx",
"formula",
"spreadsheet"
],
"author": "Borgar Þorsteinsson <[email protected]> (http://borgar.net/)",
"license": "MIT",
"devDependencies": {
"@babel/core": "~7.23.9",
"@babel/eslint-parser": "~7.23.10",
"@babel/preset-env": "~7.23.9",
"@borgar/eslint-config": "~3.1.0",
"@borgar/jsdoc-tsmd": "~0.2.1",
"@rollup/plugin-babel": "~6.0.4",
"babel-eslint": "~10.1.0",
"eslint": "~8.56.0",
"eslint-plugin-jsdoc": "~48.1.0",
"jsdoc": "~4.0.2",
"rollup": "~4.12.0",
"rollup-plugin-minification": "~0.2.0",
"tap-min": "~3.0.0",
"tape": "~5.7.5",
"typescript": "~5.3.3"
}
}