Skip to content

Commit baaae7c

Browse files
initial commit
0 parents  commit baaae7c

File tree

20 files changed

+8880
-0
lines changed

20 files changed

+8880
-0
lines changed

.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
node_modules/
2+
3+
build/
4+
packages/*/dist/
5+
6+
yarn-error.log
7+
npm-debug.log
8+
lerna-debug.log

.prettierc.json

Whitespace-only changes.

index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
//empty

lerna.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"packages": [
3+
"packages/*"
4+
],
5+
"version": "0.0.1",
6+
"npmClient": "yarn",
7+
"useWorkspaces": true,
8+
"lerna": "4.0.0"
9+
}

package.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"name": "root",
3+
"private": true,
4+
"workspaces": [
5+
"packages/node",
6+
"packages/transport"
7+
],
8+
"scripts": {
9+
"build": "lerna run build"
10+
},
11+
"dependencies": {},
12+
"devDependencies": {
13+
"@types/jest": "^27.4.1",
14+
"@types/node": "^17.0.21",
15+
"lerna": "^4.0.0",
16+
"jest": "^27.5.1",
17+
"prettier": "^2.5.1",
18+
"ts-jest": "^27.1.3",
19+
"tslint": "^6.1.3",
20+
"typescript": "^4.6.2"
21+
}
22+
}

packages/commons/package.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"name": "@klepper/commons",
3+
"version": "0.0.1",
4+
"main": "dist/index.js",
5+
"types": "dist/index.d.ts",
6+
"private": "false",
7+
"license": "MIT",
8+
"publishConfig": {
9+
"access": "public"
10+
},
11+
"scripts": {
12+
"build": "tsc -p tsconfig.json",
13+
"test": "jest",
14+
"test:watch": "jest --watch --notify"
15+
},
16+
"dependencies": {
17+
"tslint": "^6.1.3",
18+
"typescript": "^4.6.2"
19+
}
20+
}

packages/commons/src/index.ts

Whitespace-only changes.

packages/commons/tsconfig.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"extends": "../../tsconfig.json",
3+
4+
"compilerOptions": {
5+
"baseUrl": ".",
6+
"outDir": "dist",
7+
"rootDir": "src"
8+
},
9+
"include": ["src/**/*.ts"]
10+
}

packages/config/tsconfig.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"compilerOptions": {
3+
"alwaysStrict": false,
4+
"declaration": true,
5+
"declarationMap": true,
6+
"downlevelIteration": true,
7+
"importHelpers": true,
8+
"inlineSources": true,
9+
"lib": ["es6", "dom"],
10+
"moduleResolution": "node",
11+
"noEmitHelpers": true,
12+
"noFallthroughCasesInSwitch": true,
13+
"noImplicitAny": true,
14+
"noImplicitReturns": true,
15+
"noImplicitThis": true,
16+
"noImplicitUseStrict": true,
17+
"noUnusedLocals": true,
18+
"noUnusedParameters": true,
19+
"preserveWatchOutput": true,
20+
"pretty": true,
21+
"sourceMap": true,
22+
"strict": true,
23+
"strictBindCallApply": false,
24+
"target": "es5"
25+
}
26+
}

packages/node/package.json

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
"name": "@klepper/node",
3+
"version": "0.0.1",
4+
"description": "",
5+
"author": "",
6+
"license": "MIT",
7+
"engines": {
8+
"node": ">=6"
9+
},
10+
"main": "dist/index.js",
11+
"types": "dist/index.d.ts",
12+
"dependencies": {
13+
"@klepper/transport": "0.0.1",
14+
"@klepper/commons": "0.0.1"
15+
},
16+
"devDependencies": {
17+
"jest": "^22.4.3",
18+
"npm-run-all": "^4.1.2",
19+
"prettier": "^1.14.0",
20+
"prettier-check": "^2.0.0",
21+
"rimraf": "^2.6.2",
22+
"tslint": "^5.11.0",
23+
"typescript": "^3.0.1"
24+
},
25+
"scripts": {
26+
"build": "tsc -p tsconfig.json",
27+
"test": "jest",
28+
"test:watch": "jest --watch --notify"
29+
}
30+
}

0 commit comments

Comments
 (0)