aftool
Version:
aftool 个人用的一些基本库
68 lines (67 loc) • 1.75 kB
JSON
{
"name": "aftool",
"version": "2.0.3",
"description": "aftool 个人用的一些基本库",
"main": "./dist/main.js",
"types": "./types/src/index.d.ts",
"scripts": {
"test": "npm run lint && npx jest --coverage",
"dev": "webpack --config ./build/webpack.dev.js",
"build": "npm run test && webpack --config ./build/webpack.prod.js && npx typedoc",
"lint": "npx eslint -f unix \"{src,global_types}/**/*.{ts,tsx}\"",
"commit": "git add . && npm run test && git cz"
},
"keywords": [
"防抖",
"节流",
"Array",
"Tree"
],
"author": "yinxinp",
"license": "MIT",
"private": false,
"dependencies": {
"@babel/polyfill": "^7.12.1",
"core-js": "^3.8.1"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/preset-env": "^7.12.7",
"@babel/preset-typescript": "^7.12.7",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/jest": "^26.0.15",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.17.0",
"eslint-plugin-tsdoc": "^0.2.10",
"husky": "^4.3.6",
"jest": "^26.6.3",
"ts-loader": "^8.0.11",
"typedoc": "^0.20.10",
"typescript": "^4.1.2",
"webpack": "^5.8.0",
"webpack-cli": "^4.2.0",
"webpack-merge": "^5.4.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"files": [
"dist",
"types",
"package.json",
"docs"
]
}