Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinDrost committed Sep 16, 2020
0 parents commit dc27e30
Show file tree
Hide file tree
Showing 18 changed files with 1,166 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
distribution
node_modules
2 changes: 2 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
source
node_modules
355 changes: 355 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 28 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"name": "fundering",
"version": "0.0.0-alpha.0",
"description": "",
"main": "distribution/index.js",
"scripts": {
"prepublishOnly": "npm run build",
"test": "npm run build",
"build": "npm i && npm run clean && tsc",
"clean": "rimraf distribution/*"
},
"dependencies": {},
"devDependencies": {
"@types/mongoose": "5.7.36",
"rimraf": "3.0.2",
"tslint": "5.20.0",
"typescript": "4.0.2"
},
"peerDependencies": {
"mongoose": "> 5.x"
},
"repository": "git+https://github.com/MartinDrost/fundering.git",
"author": "MartinDrost",
"license": "ISC",
"bugs": "https://github.com/MartinDrost/fundering/issues",
"homepage": "https://github.com/MartinDrost/fundering#readme",
"keywords": []
}
Empty file added readme.md
Empty file.
Loading

0 comments on commit dc27e30

Please sign in to comment.