1 Star 1 Fork 0

WebCell/core

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
package.json 2.83 KB
一键复制 编辑 原始数据 按行查看 历史
南漂一卒 提交于 2020-12-18 23:25 . [fix] Type bug of mixinForm()
{
"name": "web-cell",
"version": "2.3.0-beta.1",
"description": "Web Components engine based on JSX & TypeScript",
"keywords": [
"web",
"component",
"engine",
"jsx",
"typescript"
],
"license": "LGPL-3.0",
"author": "shiy2008@gmail.com",
"homepage": "https://web-cell.dev/",
"repository": {
"type": "git",
"url": "git+https://github.com/EasyWebApp/WebCell.git"
},
"bugs": {
"url": "https://github.com/EasyWebApp/WebCell/issues"
},
"main": "dist/index.js",
"source": "source/index.ts",
"types": "dist/index.d.ts",
"dependencies": {
"web-utility": "^2.1.1"
},
"peerDependencies": {
"@webcomponents/webcomponentsjs": "^2.5.0",
"core-js": "^3.8.1",
"jsdom": "^16.4.0"
},
"devDependencies": {
"@types/core-js": "^2.5.4",
"@types/jest": "^26.0.19",
"@types/jsdom": "^16.2.5",
"@typescript-eslint/parser": "^4.10.0",
"element-internals-polyfill": "0.1.1",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-prettier": "^3.3.0",
"husky": "^4.3.6",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"open-cli": "^6.0.1",
"parcel-bundler": "^1.12.4",
"prettier": "^2.2.1",
"snabbdom": "^2.1.0",
"ts-jest": "^26.4.4",
"typedoc": "^0.19.2",
"typescript": "^4.1.3"
},
"scripts": {
"lint": "lint-staged",
"test": "npm run lint && jest",
"pack-type": "tsc && rm -f dist/*.{js,map} dist/**/*.{js,map}",
"pack-dist": "parcel build source/index.ts --global WebCell",
"pack-docs": "typedoc source/",
"build": "rm -rf dist/ && npm run pack-type && npm run pack-dist && npm run pack-docs",
"help": "npm run pack-docs && open-cli docs/index.html",
"prepublishOnly": "npm test && npm run build"
},
"lint-staged": {
"source/**/*.{ts,tsx}": "eslint --fix",
"*.{js,ts,tsx}": [
"prettier --write",
"eslint --fix --rule 'require-atomic-updates: 1'"
],
"*.{html,md,css,json,yml}": "prettier --write"
},
"husky": {
"hooks": {
"pre-commit": "npm test",
"pre-push": "npm run build"
}
},
"prettier": {
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "avoid",
"tabWidth": 4
},
"jest": {
"preset": "ts-jest/presets/js-with-ts",
"globals": {
"ts-jest": {
"tsConfig": "test/tsconfig.json",
"isolatedModules": true
}
},
"testPathIgnorePatterns": [
"/node_modules/",
"/MobX/"
],
"transformIgnorePatterns": []
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
TypeScript
1
https://gitee.com/WebCell/core.git
git@gitee.com:WebCell/core.git
WebCell
core
core
v2

搜索帮助