This repository has been archived on 2025-03-19. You can view files and clone it, but cannot push or open issues or pull requests.
TwitToMast/node_modules/tall/package.json
Penelope Gomez / Pogmommy 172b799a07 add tall
2023-02-14 14:54:24 -07:00

55 lines
1.3 KiB
JSON

{
"name": "tall",
"version": "8.0.0",
"description": "Promise-based, No-dependency URL unshortner (expander) module for Node.js",
"type": "module",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"exports": {
"import": "./lib/esm/index.js",
"require": "./lib/cjs/index.js"
},
"files": [
"lib/",
"!lib/**/*.test*",
"!lib/**/jest.*"
],
"engines": {
"node": ">=16.0.0"
},
"engineStrict": true,
"scripts": {
"clean": "rm -rf ./lib",
"build": "tsc -p tsconfig.json && tsc -p tsconfig-cjs.json && echo '{\"type\":\"commonjs\"}' > lib/cjs/package.json",
"build:test": "node test/commonjs.cjs && node test/esm.js",
"prepublish": "npm run build",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lmammino/tall.git"
},
"author": {
"name": "Luciano Mammino",
"url": "https://loige.co"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/lmammino/tall/issues"
},
"homepage": "https://github.com/lmammino/tall#readme",
"keywords": [
"URL",
"shortner",
"unshortner",
"expander",
"tall",
"link",
"expand link",
"expand url",
"promise",
"no depenencies",
"no dependency",
"typescript"
]
}