lib/package.json

43 lines
1.1 KiB
JSON
Raw Normal View History

2021-03-03 00:57:41 +00:00
{
"name": "@extollo/lib",
2021-03-30 21:22:16 +00:00
"version": "0.1.3",
2021-03-03 00:57:41 +00:00
"description": "The framework library that lifts up your code.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"directories": {
"lib": "lib"
},
"dependencies": {
"@extollo/di": "git+https://code.garrettmills.dev/extollo/di",
"@extollo/util": "git+https://code.garrettmills.dev/extollo/util",
"@types/busboy": "^0.2.3",
"@types/negotiator": "^0.6.1",
2021-03-29 18:53:57 +00:00
"@types/node": "^14.14.37",
2021-03-09 00:07:55 +00:00
"@types/pug": "^2.0.4",
"busboy": "^0.3.1",
2021-03-29 18:53:57 +00:00
"colors": "^1.4.0",
2021-03-03 00:57:41 +00:00
"dotenv": "^8.2.0",
"negotiator": "^0.6.2",
2021-03-09 00:07:55 +00:00
"pug": "^3.0.2",
2021-03-23 00:19:35 +00:00
"ts-node": "^9.1.1",
2021-03-29 18:53:57 +00:00
"typescript": "^4.2.3"
2021-03-03 00:57:41 +00:00
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"app": "tsc && node lib/index.js",
"prepare": "pnpm run build"
2021-03-03 00:57:41 +00:00
},
"files": [
"lib/**/*"
],
"prepare": "npm run build",
"postversion": "git push && git push --tags",
"repository": {
"type": "git",
"url": "https://code.garrettmills.dev/extollo/lib"
},
"author": "garrettmills <shout@garrettmills.dev>",
"license": "MIT"
}