-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.01 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.01 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
{
"name": "@time-loop/hot-formula-parser",
"version": "4.3.1",
"description": "Formula parser",
"type": "commonjs",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"clean": "rimraf dist coverage",
"lint": "eslint src test",
"lint:fix": "eslint src test --fix",
"check": "npm run lint && npm run test",
"test:clear": "jest --clearCache",
"test": "jest --detectOpenHandles",
"test:coverage": "jest --coverage",
"test:perf": "jest --config=jest-perf.config.js",
"test:generate": "ts-node test/scripts/generatePerfTestData.ts",
"build": "tsc",
"generate-parser": "cd src/grammar-parser && jison grammar-parser.jison",
"release": "generate-release",
"prepublishOnly": "npm run clean && npm run check && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/time-loop/github-packages.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"keywords": [
"formula",
"formulas",
"parser",
"formula-parser",
"excel",
"spreadsheet"
],
"engines": {
"node": ">=18.10.0"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/eslint-parser": "^7.25.1",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.9.0",
"@types/jest": "^29.5.12",
"eslint": "^9.9.0",
"eslint-plugin-jest": "^28.8.0",
"generate-release": "^1.1.1",
"globals": "^15.9.0",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"jison": "^0.4.18",
"jscs": "^3.0.7",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.2",
"tslib": "^2.6.3",
"typescript": "^5.5.4",
"typescript-eslint": "^8.1.0"
},
"dependencies": {
"@formulajs/formulajs": "^2.3.0",
"json5": "^2.2.3",
"tiny-emitter": "^2.1.0"
}
}