67 lines
2.0 KiB
JSON
67 lines
2.0 KiB
JSON
{
|
|
"name": "@flare/utiliyo",
|
|
"version": "1.2.1",
|
|
"description": "utiliyo is a lightweight utility library designed to simplify common tasks in JavaScript development. It provides a set of well-structured and reusable functions that enhance productivity and code maintainability.",
|
|
"main": "./lib/index.js",
|
|
"types": "./lib/index.d.ts",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"test": "jest --config jestconfig.json",
|
|
"format": "prettier --write \"src/**/*.ts\"",
|
|
"lint": "tslint -p tsconfig.json",
|
|
"prepublishOnly": "npm test && npm run lint",
|
|
"prepush": "npm install && npm run build",
|
|
"preversion": "npm run lint",
|
|
"version": "npm run format && git add -A src",
|
|
"push": "npm publish",
|
|
"push:major": "npm run version:major && npm run push",
|
|
"push:minor": "npm run version:minor && npm run push",
|
|
"push:patch": "npm run version:patch && npm run push",
|
|
"version:major": "npm version major --no-git-tag-version",
|
|
"version:minor": "npm version minor --no-git-tag-version",
|
|
"version:patch": "npm version patch --no-git-tag-version"
|
|
},
|
|
"author": {
|
|
"name": "Tudor Stanciu",
|
|
"email": "tudor.stanciu94@gmail.com",
|
|
"url": "https://lab.code-rove.com/tsp"
|
|
},
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://lab.code-rove.com/gitea/bricks/utiliyo"
|
|
},
|
|
"keywords": [
|
|
"flare",
|
|
"utiliyo"
|
|
],
|
|
"bugs": {
|
|
"url": "https://lab.code-rove.com/gitea/bricks/utiliyo/issues"
|
|
},
|
|
"homepage": "https://lab.code-rove.com/gitea/bricks/utiliyo#readme",
|
|
"files": [
|
|
"lib/**/*",
|
|
"LICENSE"
|
|
],
|
|
"devDependencies": {
|
|
"@types/jest": "^29.5.14",
|
|
"jest": "^29.7.0",
|
|
"jest-environment-jsdom": "^29.7.0",
|
|
"prettier": "^3.5.3",
|
|
"ts-jest": "^29.3.0",
|
|
"tslint": "^6.1.3",
|
|
"tslint-config-prettier": "^1.18.0",
|
|
"typescript": "^5.8.2"
|
|
},
|
|
"prettier": {
|
|
"trailingComma": "none",
|
|
"tabWidth": 2,
|
|
"semi": true,
|
|
"singleQuote": false,
|
|
"arrowParens": "avoid"
|
|
},
|
|
"publishConfig": {
|
|
"registry": "https://lab.code-rove.com/public-node-registry"
|
|
}
|
|
}
|