mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
58 lines
930 B
JSON
58 lines
930 B
JSON
{
|
|
"name": "@webank/fes-template",
|
|
"version": "0.1.0",
|
|
"description": "fes项目模版",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"build": "fes build",
|
|
"dev": "fes dev"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"*.js": [
|
|
"eslint",
|
|
"git add"
|
|
],
|
|
"*.fes": [
|
|
"eslint",
|
|
"git add"
|
|
],
|
|
"*.vue": [
|
|
"eslint",
|
|
"git add"
|
|
]
|
|
},
|
|
"keywords": [
|
|
"管理端",
|
|
"fes",
|
|
"fast",
|
|
"easy",
|
|
"strong"
|
|
],
|
|
"files": [
|
|
".eslintrc.js",
|
|
".gitignore",
|
|
"fes.config.js",
|
|
"mock.js",
|
|
"package.json",
|
|
"README.md",
|
|
"/src"
|
|
],
|
|
"repository": {
|
|
"type": "git"
|
|
},
|
|
"author": "harrywan qlin",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@webank/eslint-config-webank": "^0.1.4",
|
|
"husky": "^3.0.9",
|
|
"lint-staged": "^9.4.2"
|
|
},
|
|
"dependencies": {},
|
|
"peerDependencies": {}
|
|
}
|