Skip to content

Commit

Permalink
feat(): initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Heliks committed Jun 14, 2024
0 parents commit fc8dd8d
Show file tree
Hide file tree
Showing 21 changed files with 4,582 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.idea
node_modules
lib

23 changes: 23 additions & 0 deletions jest.config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"collectCoverageFrom": [
"./src/**/*.ts"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testMatch": [
"**/*.spec.ts"
],
"setupFiles": [],
"moduleFileExtensions": [
"js",
"jsx",
"ts",
"tsx",
"json",
"node"
],
"modulePathIgnorePatterns": [
"node_modules"
]
}
25 changes: 25 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"name": "@heliks/flex",
"description": "Implementation of flexbox algorithm in typescript",
"version": "0.0.0",
"devDependencies": {
"@types/jest": "29.0.1",
"@types/node": "^20.14.2",
"jest": "29.0.3",
"ts-jest": "29.0.0",
"typescript": "^4.9.5"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc -w",
"test": "jest --config jest.config.json"
},
"files": [
"lib/*"
],
"dependencies": {
"-": "^0.0.1",
"g": "^2.0.1",
"pnpm": "^8.1.1"
}
}
Loading

0 comments on commit fc8dd8d

Please sign in to comment.