forked from rowsncolumns/fast-formula-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.92 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 2.92 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "ts-formula-parser",
"version": "0.0.3",
"description": "excel formula parser based on typescript",
"repository": "https://github.com/ChasLui/ts-formula-parser",
"type": "module",
"main": "build/index.mjs",
"module": "build/index.mjs",
"types": "index.d.ts",
"unpkg": "build/index.umd.min.js",
"jsdelivr": "build/index.umd.min.js",
"browser": "build/index.mjs",
"exports": {
".": {
"import": "./build/index.mjs",
"require": "./build/index.cjs",
"browser": "./build/index.mjs",
"types": "./index.d.ts",
"default": "./build/index.mjs"
}
},
"files": [
"build/",
"index.d.ts",
"index.js",
"formulas/",
"grammar/",
"ssf/",
"*.md"
],
"scripts": {
"test": "vitest run",
"test:f": "vitest run test/formulas",
"test:watch": "vitest",
"prepublishOnly": "npm run build && npm run test",
"postpublish": "echo 'Published successfully! Documentation will be updated by GitHub Actions.'",
"build": "unbuild",
"build:dev": "unbuild --stub",
"typecheck": "tsc --noEmit",
"lint": "eslint . --ext .ts --fix",
"lint:check": "eslint . --ext .ts",
"analyze": "echo 'bundle analyze is not supported by unbuild directly'",
"diagram": "npx tsx grammar/diagram.ts",
"docs": "npm run diagram && jsdoc --configure .jsdoc.json --verbose",
"publish:docs": "npm run docs && npm run coverage && gh-pages -d docs",
"coverage": "vitest run --coverage",
"coverage:f": "vitest run test/formulas --coverage",
"coverage:server": "vitest run --coverage --reporter=lcov | coveralls",
"perf": "node scripts/perf-test.mjs",
"dev": "npm run build:dev && npm run test:watch",
"ci": "npm run typecheck && npm run test && npm run build"
},
"keywords": [
"excel",
"formula",
"spreadsheet",
"javascript",
"js",
"parser",
"excel-formula"
],
"author": "ChasLui",
"license": "MIT",
"dependencies": {
"bahttext": "^2.3.3",
"bessel": "^1.0.2",
"chevrotain": "^11.0.3",
"jstat": "^1.9.6"
},
"devDependencies": {
"@vitest/coverage-v8": "^2.1.1",
"coveralls-next": "^5.0.0",
"docdash": "^2.0.2",
"gh-pages": "^6.3.0",
"jsdoc": "^4.0.4",
"release-it": "^19.0.4",
"taffydb": "^2.7.3",
"typescript": "^5.6.3",
"unbuild": "^3.6.1",
"vitest": "^2.1.1"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"engines": {
"node": ">=22.0.0"
},
"packageManager": "pnpm@10.13.1+sha512.37ebf1a5c7a30d5fabe0c5df44ee8da4c965ca0c5af3dbab28c3a1681b70a256218d05c81c9c0dcf767ef6b8551eb5b960042b9ed4300c59242336377e01cfad",
"release-it": {
"git": {
"commitMessage": "chore(release): v${version}",
"tagName": "v${version}",
"tagAnnotation": "Release v${version}",
"requireCleanWorkingDir": true
},
"github": {
"release": true
},
"npm": {
"publish": true
}
}
}