@alifd/field
Version:
Fields can be used to manage data when it comes to form data manipulation and validation. After being associated with a component, the form data can be automatically written back, read, and verified.
126 lines (125 loc) • 3.32 kB
JSON
{
"name": "@alifd/field",
"version": "1.5.8",
"description": "Fields can be used to manage data when it comes to form data manipulation and validation. After being associated with a component, the form data can be automatically written back, read, and verified.",
"files": [
"demo/",
"lib/",
"build/",
"types/"
],
"main": "lib/index.js",
"types": "types/index.d.ts",
"stylePath": "style.js",
"scripts": {
"start": "ice-scripts dev",
"build": "ice-scripts build",
"prepublishOnly": "npm run build",
"test": "ice-scripts test",
"test-watch": "ice-scripts test --jest-watchAll",
"precommit": "lint-staged",
"eslint": "eslint '@(src|test)/**/*.@(js|jsx)'"
},
"lint-staged": {
"@(src|scripts|docs/*/demo)/**/*.@(js|jsx)": [
"prettier --write"
],
"@(src|scripts|docs/*/demo)/**/*.@(js|jsx|md)": [
"eslint",
"git add"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"license": "MIT",
"keywords": [
"ice",
"react",
"component"
],
"dependencies": {
"@alifd/validate": "^1.2.0",
"prop-types": "^15.5.8"
},
"devDependencies": {
"@alifd/eslint-config-next": "^2.0.0",
"@alifd/next": "^1.15.12",
"@commitlint/cli": "^8.1.0",
"babel-eslint": "^10.0.2",
"babel-plugin-transform-jsx-list": "^0.1.0",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-proto-to-assign": "^6.26.0",
"babel-plugin-transform-react-es6-displayname": "^1.0.0-beta1.4",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"es6-promise-polyfill": "^1.2.0",
"eslint": "^6.0.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-markdown": "^1.0.0",
"eslint-plugin-react": "^7.14.2",
"husky": "^3.0.0",
"ice-plugin-component": "^0.1.1",
"ice-plugin-fusion": "^0.1.4",
"ice-scripts": "^2.0.0",
"lint-staged": "^9.2.0",
"mocha": "^6.1.4",
"moment": "^2.24.0",
"power-assert": "^1.6.1",
"prettier": "^1.18.2",
"react": "^16.3.0",
"react-dom": "^16.8.6",
"react-redux": "^7.1.0",
"redux": "^4.0.4",
"semantic-release": "^17.2.3",
"sinon": "^7.3.2",
"typescript": "^3.5.3"
},
"componentConfig": {
"name": "field",
"title": "Field",
"categories": [
"表单"
]
},
"homepage": "https://unpkg.com/@alifd/field@1.5.8/build/index.html",
"bugs": "https://github.com/alibaba-fusion/field/issues",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/alibaba-fusion/field.git"
},
"release": {
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"releaseRules": [
{
"type": "typescript",
"release": "patch"
},
{
"type": "revert",
"release": "patch"
}
],
"parserOpts": {
"noteKeywords": [
"BREAKING CHANGE",
"BREAKING CHANGES"
]
}
}
],
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github"
]
}
}