-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
56 lines (56 loc) · 1.04 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
{
"name": "@leanylabs/formula-engine",
"author": "LeanyLabs",
"version": "1.1.0",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"license": "MIT",
"scripts": {
"start": "ts-node-dev ./src/index.ts",
"build": "tsc",
"test": "jest"
},
"dependencies": {
"chevrotain": "^9.0.1"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"jest": "^27.0.1",
"ts-jest": "^27.0.0",
"ts-node-dev": "^1.1.6",
"typescript": "^4.2.4"
},
"jest": {
"testMatch": [
"**/tests/**/*.spec.+(ts|tsx|js)"
],
"globals": {
"ts-jest": {
"diagnostics": false
}
},
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.(ts)$": "ts-jest"
},
"testEnvironment": "node",
"maxConcurrency": 1
},
"repository": "https://github.com/LeanyLabs/formula-engine",
"keywords": [
"formula",
"parser",
"engine",
"excel",
"sheets"
],
"files": [
"dist/**/*",
"package.json",
"README.md",
"LICENSE"
]
}