ut-tools
Version:
Build and Release management automation package.
71 lines (70 loc) • 1.71 kB
JSON
{
"name": "@stoplight/types",
"version": "12.3.0",
"description": "Common typings for the Stoplight ecosystem.",
"keywords": [],
"sideEffects": false,
"homepage": "https://github.com/stoplightio/types",
"bugs": "https://github.com/stoplightio/types/issues",
"author": "Stoplight <support@stoplight.io>",
"repository": {
"type": "git",
"url": "https://github.com/stoplightio/types.git"
},
"main": "dist/index.js",
"license": "Apache-2.0",
"files": [
"dist/*"
],
"engines": {
"node": ">=8"
},
"scripts": {
"build": "tsc -p ./tsconfig.json -d",
"commit": "git-cz",
"lint": "tslint -c tslint.json 'src/**/*.ts?'",
"lint.fix": "yarn lint --fix",
"release": "semantic-release",
"test": "jest",
"test.prod": "yarn lint && yarn test --coverage --no-cache",
"test.update": "yarn test --updateSnapshot",
"test.watch": "yarn test --watch"
},
"dependencies": {
"@types/json-schema": "^7.0.4",
"utility-types": "^3.10.0"
},
"devDependencies": {
"@types/jest": "^25.1.4",
"@types/node": "^13.9.1",
"jest": "^25.1.0",
"lodash": "^4.17.15",
"semantic-release": "^17.0.4",
"ts-jest": "^25.2.1",
"tslint": "^6.1.0",
"tslint-config-stoplight": "^1.4.0",
"typescript": "3.8.3"
},
"lint-staged": {
"*.ts": [
"tslint -c tslint.json --fix",
"git add"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}