Skip to content

Commit

Permalink
feat: initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
o.drapeza committed Jul 13, 2020
0 parents commit 1ad209a
Show file tree
Hide file tree
Showing 11 changed files with 8,556 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 @@
node_modules
dist
.tmp
tsconfig.tsbuildinfo
4 changes: 4 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
node_modules
src
.tmp
tsconfig.tsbuildinfo
1 change: 1 addition & 0 deletions .prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{}
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# simple-typed-di-container
1 change: 1 addition & 0 deletions commitlint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = { extends: ["@commitlint/config-conventional"] };
5 changes: 5 additions & 0 deletions jest.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module.exports = {
preset: "ts-jest",
testEnvironment: "node",
cacheDirectory: ".tmp",
};
7,791 changes: 7,791 additions & 0 deletions package-lock.json

Large diffs are not rendered by default.

42 changes: 42 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
{
"name": "simple-typed-di-container",
"version": "1.0.0",
"description": "Dependency injection container with strongly types support",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "npm run build:watch",
"build": "tsc",
"build:watch": "tsc --watch",
"test": "jest",
"test:watch": "npm run test -- --watch",
"prettier": "npx prettier --write .",
"prebuild": "rimraf dist",
"prerelease": "npm run build",
"release": "standard-version",
"release:dry": "npm run release -- --dry-run"
},
"husky": {
"hooks": {
"pre-commit": "npm run prettier && git add .",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"author": "SuperOleg39",
"repository": {
"type": "git",
"url": "git@github.com:SuperOleg39/simple-typed-di-container.git"
},
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.1",
"@types/jest": "^26.0.4",
"husky": "^4.2.5",
"jest": "^26.1.0",
"prettier": "2.0.5",
"standard-version": "^8.0.1",
"ts-jest": "^26.1.2",
"typescript": "^3.9.6"
}
}

0 comments on commit 1ad209a

Please sign in to comment.