UNPKG

sveltejs-forms

Version:
107 lines (106 loc) 3.01 kB
{ "name": "sveltejs-forms", "description": "Declarative forms for Svelte", "homepage": "https://mdauner.github.io/sveltejs-forms/", "version": "2.1.2", "license": "MIT", "repository": "github:mdauner/sveltejs-forms", "svelte": "src/components/components.module.js", "module": "dist/index.min.mjs", "main": "dist/index.min.js", "devDependencies": { "@babel/core": "~7.11.6", "@babel/plugin-syntax-dynamic-import": "~7.8.3", "@babel/plugin-transform-runtime": "~7.11.5", "@babel/preset-env": "~7.11.5", "@commitlint/cli": "~8.3.5", "@commitlint/config-conventional": "~8.3.4", "@testing-library/dom": "^7.24.1", "@testing-library/jest-dom": "~5.11.4", "@testing-library/svelte": "~3.0.0", "@testing-library/user-event": "^12.1.3", "@types/jest": "~25.1.3", "autoprefixer": "~9.7.4", "babel-jest": "~26.3.0", "cz-conventional-changelog": "~3.1.0", "eslint": "~6.8.0", "eslint-config-prettier": "~6.10.00", "eslint-plugin-jest": "~23.8.1", "eslint-plugin-svelte3": "~2.7.3", "husky": "~4.2.3", "jest": "~25.1.0", "lint-staged": "~10.0.8", "node-sass": "~4.13.1", "npm-run-all": "~4.1.5", "postcss": "~7.0.27", "postcss-load-config": "~2.1.0", "prettier": "~1.19.1", "prettier-plugin-svelte": "~0.7.0", "rollup": "~1.32.0", "rollup-plugin-babel": "~4.3.3", "rollup-plugin-commonjs": "~10.1.0", "rollup-plugin-livereload": "~1.0.4", "rollup-plugin-node-resolve": "~5.2.0", "rollup-plugin-svelte": "~5.1.1", "rollup-plugin-terser": "~5.2.0", "semantic-release": "~17.0.4", "sirv-cli": "~0.4.5", "svelte": "~3.20.0", "svelte-jester": "^1.1.5", "svelte-preprocess": "~3.4.0", "yup": "~0.28.2" }, "peerDependencies": { "svelte": "~3.20.0", "yup": "~0.28.2" }, "dependencies": { "lodash-es": "~4.17.15", "svelte-writable-derived": "~2.0.1" }, "scripts": { "prettier": "prettier --check '**/*.{svelte, html, css, scss, stylus, js, ts, json, yml, md}' --plugin-search-dir=.", "lint": "eslint --color './**/*.{js,svelte}'", "test": "jest --verbose", "autobuild": "rollup -c -w", "start:dev": "sirv public --single --dev", "dev": "run-p start:dev autobuild", "build": "rollup -c", "prepublishOnly": "npm run build", "semantic-release": "semantic-release" }, "browserslist": [ "defaults" ], "keywords": [ "svelte", "forms", "validation", "javascript" ], "files": [ "src", "dist" ], "husky": { "hooks": { "pre-commit": "lint-staged", "commit-msg": "commitlint -E HUSKY_GIT_PARAMS" } }, "lint-staged": { "*.{svelte,js}": [ "eslint --fix", "git add" ], "*.{svelte, html, css, scss, stylus, js, ts, json, yml, md}": [ "prettier --write --plugin-search-dir=.", "git add" ] }, "config": { "commitizen": { "path": "./node_modules/cz-conventional-changelog" } } }