diff --git a/package.json b/package.json new file mode 100644 index 0000000..4900cba --- /dev/null +++ b/package.json @@ -0,0 +1,33 @@ +{ + "name": "@extollo/_template", + "version": "0.1.0", + "description": "", + "main": "lib/index.js", + "types": "lib/index.d.ts", + "directories": { + "lib": "lib" + }, + "dependencies": { + "@extollo/di": "file:../di", + "@extollo/util": "file:../util", + "@types/node": "^14.14.35", + "ts-node": "^9.1.1", + "typescript": "^4.1.3" + }, + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1", + "build": "tsc", + "app": "tsc && node lib/index.js" + }, + "files": [ + "lib/**/*" + ], + "prepare": "npm run build", + "postversion": "git push && git push --tags", + "repository": { + "type": "git", + "url": "https://code.garrettmills.dev/extollo/_template" + }, + "author": "garrettmills ", + "license": "MIT" +}