@axmit/investment-analytics-common
Version:
Package with common stuff for investment-analytics services
45 lines (44 loc) • 1.03 kB
JSON
{
"name": "@axmit/investment-analytics-common",
"version": "1.0.1",
"contributors": [
{
"name": "Aleksei Turtsevich",
"email": "aturcevich@axmit.com"
}
],
"keywords": [
"investment-analytics"
],
"scripts": {
"build": "rm -rf ./dist && tsc",
"prepublishOnly": "yarn build"
},
"description": "Package with common stuff for investment-analytics services",
"homepage": "https://gitlab.axmit.com/uk/investment-analytics-common",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://gitlab.axmit.com/uk/investment-analytics-common.git"
},
"dependencies": {},
"devDependencies": {
"husky": "^1.3.1",
"lint-staged": "^8.1.4",
"prettier": "^1.16.4",
"typescript": "^3.3.3333"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{tsx,jsx,ts,js,json,css,md}": [
"prettier --config .prettierrc --write",
"git add"
]
}
}