Utils/package.json

33 lines
780 B
JSON
Raw Normal View History

2019-03-08 00:39:43 +00:00
{
"name": "@hibas123/utils",
2020-10-19 16:37:34 +00:00
"version": "2.2.13",
"description": "Different Utilities, that are not worth own packages",
"main": "lib/index.js",
"types": "lib/index.d.ts",
2020-08-26 09:54:51 +00:00
"module": "esm/index.js",
"scripts": {
2020-08-26 08:58:27 +00:00
"prepublishOnly": "npm run build",
"build": "tsc && tsc -p tsconfig.esm.json",
2020-10-14 23:48:52 +00:00
"watch-ts": "tsc -w",
"postpublish": "denreg publish"
},
"author": "Fabian Stamm <dev@fabianstamm.de>",
"license": "MIT",
"repository": {
"url": "https://git.stamm.me/OpenServer/Utils.git",
"type": "git"
},
"devDependencies": {
2020-10-14 23:48:52 +00:00
"typescript": "^4.0.3"
},
"files": [
"src/",
"lib/",
2020-08-26 09:54:51 +00:00
"esm/",
"tsconfig.esm.json",
"tsconfig.json",
"readme.md"
],
"private": false
}