-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 2.27 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
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
{
"name": "formula-store",
"description": " A package to handle formula calculations and dependency management",
"version": "1.3.2",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/"
],
"repository": "[email protected]:diogofcunha/formula-store.git",
"author": "Diogo Cunha",
"license": "MIT",
"scripts": {
"prebuild": "rm -rf lib",
"postbuild": "rm -rf `find lib -name '__tests__'`",
"build": "tsc",
"lint": "eslint './src/**/*.{ts,tsx}'",
"prettier:write": "prettier --ignore-path .gitignore --write './**/*.{md,json,yaml,js,jsx,ts,tsx}'",
"prettier:check": "prettier --ignore-path .gitignore --list-different './**/*.{md,json,yaml,js,jsx,ts,tsx}'",
"test": "jest",
"ci:test": "jest --silent --maxWorkers=2"
},
"dependencies": {
"fast-graph": "^1.5.0"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"@types/jest": "^29.1.2",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"eslint": "^8.25.0",
"husky": "^3.0.8",
"jest": "^29.7.0",
"lint-staged": "^9.4.2",
"prettier": "^1.18.2",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx"
],
"transform": {
"^.+\\.tsx?$": [
"ts-jest",
{
"isolatedModules": true
}
]
},
"testEnvironment": "node",
"testMatch": [
"<rootDir>/src/**/__tests__/**/*.test.ts?(x)"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"prettier --write",
"eslint .",
"git add"
],
"*.{md,json,yaml,js,jsx}": [
"prettier --write",
"git add"
]
},
"keywords": [
"formula",
"formula-store",
"formula fields",
"computation",
"calculation",
"dependency management",
"reactive programming",
"state management",
"data modeling",
"math",
"computational",
"data-driven",
"dynamic calculations",
"formulas",
"store",
"dependency graph",
"stateful",
"reactive",
"algorithm",
"data processing"
],
"release": {
"branches": [
"main",
"next"
]
}
}