r-util-js/package.json

51 lines
1.3 KiB
JSON
Raw Normal View History

{
"name": "r-util-js",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "webpack",
"watch": "webpack watch --mode development",
"start": "webpack --mode development && node ./dist/index.js",
"prepare": "husky install",
"lint": "eslint --ext .js,ts --fix src",
"release": "standard-version",
"commit": "cz",
"lint-staged": "lint-staged",
"test": "jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"lodash": "^4.17.21",
"webpack": "^5.80.0",
"webpack-cli": "^5.0.1"
},
"devDependencies": {
"@babel/core": "^7.8.0",
"@babel/preset-env": "^7.12.0",
"@babel/preset-typescript": "^7.21.4",
"@commitlint/config-conventional": "^17.6.1",
"@commitlint/cz-commitlint": "^17.5.0",
"@jest/globals": "^29.5.0",
"babel-jest": "^29.5.0",
"commitizen": "^4.3.0",
"eslint": "^8.38.0",
"eslint-define-config": "^1.18.0",
"husky": "^8.0.3",
"inquirer": "^8.0.0",
"jest": "^29.5.0",
"lint-staged": "^13.2.1",
"standard-version": "^9.5.0",
"ts-loader": "^9.4.2",
"typescript": "^5.0.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS"
}
}
}