UNPKG

lzo-prop-string

Version:
105 lines (104 loc) 2.92 kB
{ "name": "lzo-prop-string", "version": "1.1.5", "description": "Accesses the object's properties via string.", "main": "./build/index.js", "types": "./build/index.d.ts", "engines": { "yarn": ">=1.22.22", "npm": ">=10.9.0", "node": ">=22.12.0" }, "repository": { "type": "git", "url": "git://github.com/Lack-Zillions-Over/prop-string.git" }, "publishConfig": { "registry": "https://registry.npmjs.org/" }, "devDependencies": { "@types/ioredis": "^5.0.0", "@types/jest": "~29.5.3", "@types/node": "~20.4.6", "@types/uuid": "^9.0.2", "@typescript-eslint/eslint-plugin": "~6.2.1", "@typescript-eslint/parser": "~6.2.1", "cz-conventional-changelog": "3.3.0", "dotenv": "^16.3.1", "dotenv-cli": "^7.2.1", "eslint": "~8.46.0", "eslint-config-prettier": "~8.10.0", "eslint-plugin-jest": "~27.2.3", "jest": "~29.6.2", "lint-staged": "^13.2.3", "npm-run-all": "^4.1.5", "prettier": "~3.0.1", "rimraf": "~5.0.1", "standard-version": "^9.5.0", "ts-jest": "^29.1.1", "tsup": "^7.2.0", "tsx": "^3.12.7", "typescript": "~5.1.6" }, "scripts": { "commit": "cz", "push:release": "git push --follow-tags origin main", "post:release": "standard-version && yarn push:release", "post:prerelease": "standard-version --prerelease alpha && yarn push:release", "audit-fix": "npx yarn-audit-fix", "update": "npx yarn upgrade-interactive --latest", "clean": "rimraf coverage build tmp", "prebuild": "npx yarn lint && npx yarn type-check", "build": "tsup src/index.ts --config tsup.config.js", "build:watch": "tsup src/index.ts --watch --config tsup.config.js", "build:release": "npm run clean && tsup src/index.ts --config tsup.config.release.js", "start": "tsx watch src/index.ts", "type-check": "tsc --noEmit", "type-check:watch": "npm run type-check -- --watch", "format": "prettier --write .", "lint": "eslint . --ext .ts", "test": "jest --watchAll --detectOpenHandles", "test:ci": "jest --ci --detectOpenHandles" }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "src/**/*.ts": "tsc-files --noEmit", "src/**/*": [ "yarn lint", "yarn format" ] }, "keywords": [ "lzo", "prop-string", "node", "ts", "typescript" ], "files": [ "build/*.js", "build/**/*.js", "build/*.d.ts", "build/**/*.d.ts" ], "author": "GuilhermeSantos001 <luizgp120@hotmail.com>", "license": "MIT", "bugs": { "url": "https://github.com/Lack-Zillions-Over/prop-string/issues" }, "homepage": "https://github.com/Lack-Zillions-Over/prop-string#readme", "dependencies": {}, "volta": { "node": "22.12.0", "yarn": "1.22.22" }, "config": { "commitizen": { "path": "./node_modules/cz-conventional-changelog" } } }