-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Travis CI User
committed
Jul 30, 2019
1 parent
e715e45
commit 3e79ee6
Showing
2 changed files
with
42 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,27 @@ | ||
{ | ||
"name": "@femessage/el-form-renderer", | ||
"version": "1.10.2", | ||
"version": "1.11.0", | ||
"description": "render form-item easily", | ||
"author": "leezng <[email protected]>", | ||
"license": "MIT", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/FEMessage/el-form-renderer.git" | ||
}, | ||
"contributors": ["https://github.com/FEMessage"], | ||
"keywords": ["vue", "element", "render", "form", "component"], | ||
"files": ["src", "dist"], | ||
"contributors": [ | ||
"https://github.com/FEMessage" | ||
], | ||
"keywords": [ | ||
"vue", | ||
"element", | ||
"render", | ||
"form", | ||
"component" | ||
], | ||
"files": [ | ||
"src", | ||
"dist" | ||
], | ||
"main": "dist/el-form-renderer.umd.js", | ||
"module": "dist/el-form-renderer.esm.js", | ||
"unpkg": "dist/el-form-renderer.min.js", | ||
|
@@ -20,14 +31,10 @@ | |
"scripts": { | ||
"dev": "vue-styleguidist server", | ||
"doc": "vue-styleguidist build", | ||
"build": | ||
"npm run build:unpkg & npm run build:es & npm run build:umd & npm run doc", | ||
"build:umd": | ||
"rollup --config build/rollup.config.js --format umd --file dist/el-form-renderer.umd.js", | ||
"build:es": | ||
"rollup --config build/rollup.config.js --format es --file dist/el-form-renderer.esm.js", | ||
"build:unpkg": | ||
"rollup --config build/rollup.config.js --format iife --file dist/el-form-renderer.min.js", | ||
"build": "npm run build:unpkg & npm run build:es & npm run build:umd & npm run doc", | ||
"build:umd": "rollup --config build/rollup.config.js --format umd --file dist/el-form-renderer.umd.js", | ||
"build:es": "rollup --config build/rollup.config.js --format es --file dist/el-form-renderer.esm.js", | ||
"build:unpkg": "rollup --config build/rollup.config.js --format iife --file dist/el-form-renderer.min.js", | ||
"stdver": "standard-version -m '[skip ci] chore(release): v%s'", | ||
"release": "gren release --override", | ||
"test": "jest --verbose" | ||
|
@@ -77,15 +84,26 @@ | |
"npm": ">= 3.0.0" | ||
}, | ||
"vue-sfc-cli": "1.10.6", | ||
"browserslist": ["> 1%", "last 2 versions", "not ie <= 8"], | ||
"browserslist": [ | ||
"> 1%", | ||
"last 2 versions", | ||
"not ie <= 8" | ||
], | ||
"husky": { | ||
"hooks": { | ||
"pre-commit": "lint-staged", | ||
"post-commit": "git update-index --again" | ||
} | ||
}, | ||
"lint-staged": { | ||
"*.(js|md)": ["prettier --write", "git add"], | ||
"*.vue": ["prettier --write", "stylelint --fix", "git add"] | ||
"*.(js|md)": [ | ||
"prettier --write", | ||
"git add" | ||
], | ||
"*.vue": [ | ||
"prettier --write", | ||
"stylelint --fix", | ||
"git add" | ||
] | ||
} | ||
} |