@smart-consulting/lattice-services
Version:
Collection of common types and functions for connecting to Lattice services
67 lines (66 loc) • 1.96 kB
JSON
{
"name": "@smart-consulting/lattice-services",
"version": "1.1.2",
"description": "Collection of common types and functions for connecting to Lattice services",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"build": "tsc",
"lint": "eslint ./ --ignore-path .gitignore",
"lint:fix": "yarn lint --fix",
"format": "prettier --ignore-path .gitignore --write \"**/*.(ts|js|json|md|yml)\"",
"prepare": "yarn build",
"prepublishOnly": "yarn test && yarn lint",
"preversion": "yarn lint",
"version": "yarn format && git add -A src",
"postversion": "git push && git push --tags"
},
"keywords": [
"Lattice"
],
"author": "AA",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"@types/jest": "^26.0.15",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"babel-jest": "^26.6.3",
"eslint": "^7.13.0",
"jest": "^26.6.3",
"prettier": "^2.1.2",
"ts-jest": "^26.4.4",
"typescript": "^4.0.5",
"husky": "^4.3.7",
"lint-staged": "^10.5.3"
},
"dependencies": {
"axios": "^0.21.0",
"fp-ts": "^2.8.6",
"io-ts": "^2.2.12"
},
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "git+ssh://git@bitbucket.org/wspdigitaluk/lattice-service.git"
},
"homepage": "https://bitbucket.org/wspdigitaluk/lattice-service#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,jsx,ts,tsx,yml,md}": [
"yarn format"
],
"*.{js,jsx,ts,tsx}": [
"yarn lint:fix"
]
}
}