UNPKG

mobx-form

Version:
93 lines (92 loc) 3.21 kB
{ "name": "mobx-form", "version": "13.3.6", "description": "A simple form helper for mobx", "main": "dist/mobx-form.cjs.js", "_browser": "dist/mobx-form.umd.js", "browser": { "./dist/index.js": "./dist/mobx-form.umd.js", "./dist/index.esm.js": "./dist/mobx-form.esm.js" }, "module": "dist/mobx-form.esm.js", "_legacy_module": "dist/mobx-form.legacy.js", "types": "mobx-form.d.ts", "files": [ "dist/", "mobx-form.d.ts" ], "scripts": { "check": "eslint --cache --cache-location node_modules/.cache/ -f friendly 'src/**/*.js' 'tests/**/*.js'", "autofix": "npm run check -- --fix", "changelog": "changelogx -f markdown -o ./changelog.md", "do-changelog": "npm run changelog && git add ./changelog.md && git commit -m 'DOC: Generate changelog' --no-verify", "install-hooks": "changelogx install-hook", "pre-v": "npm run check", "post-v": "npm run do-changelog && git push --no-verify && git push --tags --no-verify", "bump-major": "npm run pre-v && npm version major -m 'BLD: Release v%s' && npm run post-v", "bump-minor": "npm run pre-v && npm version minor -m 'BLD: Release v%s' && npm run post-v", "bump-patch": "npm run pre-v && npm version patch -m 'BLD: Release v%s' && npm run post-v", "bump-prerelease": "npm run pre-v && npm version prerelease -m 'BLD: Release v%s' && npm run post-v", "prepublishOnly": "npm run build", "build": "rollup -c", "dev": "rollup -c -w", "test": "jest --config jest.config.js", "smoke:test": "babel-node test.js" }, "repository": { "type": "git", "url": "git+https://github.com/royriojas/mobx-form.git" }, "keywords": [ "form", "model", "mobx" ], "author": "royriojas", "license": "MIT", "bugs": { "url": "https://github.com/royriojas/mobx-form/issues" }, "homepage": "https://github.com/royriojas/mobx-form#readme", "dependencies": { "debouncy": "1.0.8", "jq-trim": "0.1.2", "mobx": "^6.0.1" }, "changelogx": { "ignoreRegExp": [ "BLD: Release", "DOC: Generate Changelog", "Generated Changelog" ], "issueIDRegExp": "#(\\d+)", "commitURL": "https://github.com/royriojas/mobx-form/commit/{0}", "authorURL": "https://github.com/{0}", "issueIDURL": "https://github.com/royriojas/mobx-form/issues/{0}", "projectName": "mobx-form" }, "peerDependencies": { "mobx": "^6.0.1" }, "devDependencies": { "@babel/core": "^7.9.6", "@babel/node": "^7.8.7", "@babel/plugin-external-helpers": "^7.8.3", "@babel/plugin-proposal-class-properties": "^7.8.3", "@babel/plugin-proposal-decorators": "^7.8.3", "@babel/plugin-proposal-object-rest-spread": "^7.9.6", "@babel/plugin-proposal-optional-chaining": "^7.9.0", "@babel/plugin-transform-runtime": "^7.9.6", "@babel/preset-env": "^7.9.6", "@babel/runtime": "^7.12.1", "@redisrupt/eslint-red": "^6.0.0", "@rollup/plugin-babel": "^5.0.0", "@rollup/plugin-commonjs": "^11.1.0", "@rollup/plugin-node-resolve": "^7.1.3", "@rollup/plugin-replace": "^2.3.2", "changelogx": "^5.0.4", "jest": "^26.6.3", "rollup": "^2.10.0", "sleep.async": "^1.0.4" } }