vsf-utilities
Version:
Utilities functions shared between vsf projects
69 lines (68 loc) • 1.7 kB
JSON
{
"name": "vsf-utilities",
"version": "1.0.2",
"description": "Utilities functions shared between vsf projects",
"keywords": [
"vsf",
"utilities"
],
"license": "MIT",
"repository": "DivanteLtd/vsf-utilities",
"author": "gibkigonzo <tkostuch@divante.com>",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"!**/__tests__/**/*"
],
"scripts": {
"clean": "rm -rf build coverage",
"lint": "eslint --ext .ts src",
"lint:fix": "npm run lint -- --fix",
"test:unit": "jest",
"test:watch": "npm run jest -- --watch",
"test": "npm run lint && npm run test:unit",
"watch": "nodemon",
"build": "tsc",
"prepublishOnly": "npm run test && npm run build"
},
"dependencies": {
"lodash": "^4.17.19",
"sha3": "^2.1.3"
},
"devDependencies": {
"@commitlint/cli": "^9.0.1",
"@commitlint/config-conventional": "^9.0.1",
"@types/jest": "^26.0.0",
"@types/lodash": "^4.14.157",
"@types/node": "^12.0.7",
"@typescript-eslint/eslint-plugin": "^3.4.0",
"@typescript-eslint/parser": "^3.4.0",
"eslint": "^7.3.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.21.2",
"husky": "^4.2.5",
"jest": "^26.0.1",
"lint-staged": "^10.2.11",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"ts-jest": "^26.1.1",
"ts-node": "^8.10.2",
"typescript": "^3.9.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
}
}