lib/package.json

39 lines
937 B
JSON
Raw Normal View History

2021-03-03 00:57:41 +00:00
{
"name": "@extollo/lib",
2021-03-27 03:58:29 +00:00
"version": "0.1.2",
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": {
2021-03-27 03:58:29 +00:00
"@extollo/di": "^0.4.2",
2021-03-27 03:50:09 +00:00
"@extollo/util": "^0.3.1",
"@types/negotiator": "^0.6.1",
2021-03-23 00:21:41 +00:00
"@types/node": "^14.14.35",
2021-03-09 00:07:55 +00:00
"@types/pug": "^2.0.4",
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-03 00:57:41 +00:00
"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/lib"
},
"author": "garrettmills <shout@garrettmills.dev>",
"license": "MIT"
}