objectro
Version:
Transform and validate objects
72 lines (71 loc) • 2.09 kB
JSON
{
"name": "objectro",
"version": "1.1.0",
"description": "Transform and validate objects",
"author": "Matt Scheurich <matt@lvl99.com>",
"license": "Apache-2.0",
"browser": "./dist/objectro.umd.js",
"main": "./dist/objectro.cjs.js",
"module": "./dist/objectro.mjs",
"types": "./index.d.ts",
"scripts": {
"build": "tsc && rollup -c",
"lint": "eslint 'index.ts' 'lib/**/*.ts' -c .eslintrc.json --ignore-path .lintignore",
"lint:fix": "eslint 'index.ts' 'lib/**/*.ts' -c .eslintrc.json --ignore-path .lintignore --fix",
"test": "jest --coverage",
"test:watch": "jest --watch",
"bench": "barbell",
"pre-publish": "npm run lint && npm run build && npm run test"
},
"keywords": [
"javascript",
"object",
"transform",
"destructure",
"restructure",
"format",
"filter",
"validate",
"validation"
],
"repository": {
"type": "git",
"url": "https://github.com/lvl99/objectro.git"
},
"homepage": "https://github.com/lvl99/objectro",
"bugs": "https://github.com/lvl99/objectro/issues",
"dependencies": {
"lodash": "^4.17.21"
},
"devDependencies": {
"@babel/preset-typescript": "^7.18.6",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.3.0",
"@types/jest": "^29.2.5",
"@types/lodash": "^4.14.191",
"@typescript-eslint/parser": "^5.48.0",
"acorn-import-assertions": "^1.8.0",
"babel-jest": "^29.3.1",
"barbell": "^1.0.3",
"chalk": "^5.2.0",
"email-validator": "^2.0.4",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.3.1",
"jest-cli": "^29.3.1",
"joi": "^17.7.0",
"object-mapper": "^6.2.0",
"object-path": "^0.11.8",
"prettier": "^2.8.2",
"prop-types": "^15.8.1",
"rename-extension": "^4.0.0",
"rollup": "^3.9.1",
"rollup-plugin-banner": "^0.2.1",
"ts-jest": "^29.0.3",
"tslib": "^2.4.1",
"typescript": "^4.9.4"
}
}