js-utils/package.json

67 lines
1.9 KiB
JSON
Raw Normal View History

2022-05-04 02:25:36 +03:00
{
2022-05-08 05:31:46 +03:00
"name": "@flare/js-utils",
"version": "1.1.0",
"description": "js-utils is a collection of utilities that facilitate software development in a javascript environment.",
"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"
},
2022-05-08 21:46:02 +03:00
"author": {
"name": "Tudor Stanciu",
"email": "tudor.stanciu94@gmail.com",
2022-12-28 18:10:44 +02:00
"url": "https://lab.code-rove.com/tsp"
2022-05-08 21:46:02 +03:00
},
2022-05-04 02:34:18 +03:00
"license": "MIT",
"repository": {
"type": "git",
2023-01-30 00:41:34 +02:00
"url": "https://lab.code-rove.com/gitea/bricks/js-utils"
2022-05-04 02:34:18 +03:00
},
"keywords": [
2022-05-08 21:46:02 +03:00
"flare",
2022-05-04 02:34:18 +03:00
"js-utils"
],
"bugs": {
"url": "https://lab.code-rove.com/gitea/bricks/js-utils/issues"
2022-05-04 02:25:36 +03:00
},
"homepage": "https://lab.code-rove.com/gitea/bricks/js-utils#readme",
"files": [
"lib/**/*",
"LICENSE"
],
2022-05-04 02:25:36 +03:00
"devDependencies": {
"@types/jest": "^29.4.0",
"jest": "^29.4.1",
"jest-environment-jsdom": "^29.4.2",
"prettier": "^2.8.3",
"ts-jest": "^29.0.5",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.9.5"
2022-05-04 02:25:36 +03:00
},
"prettier": {
"trailingComma": "none",
"tabWidth": 2,
"semi": true,
"singleQuote": false,
"arrowParens": "avoid"
},
2022-05-08 05:31:46 +03:00
"publishConfig": {
2022-12-28 18:10:44 +02:00
"registry": "https://lab.code-rove.com/public-node-registry"
2022-05-04 02:25:36 +03:00
}
}