ts-asserts
Version:
The package for assert data in typescript.
69 lines (68 loc) • 1.7 kB
JSON
{
"name": "ts-asserts",
"version": "1.1.1",
"description": "The package for assert data in typescript.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"test": "jest --config jestconfig.json",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Karbashevskyi/ts-asserts.git"
},
"files": [
"lib/**/*"
],
"bugs": {
"url": "https://github.com/Karbashevskyi/ts-asserts/issues"
},
"homepage": "https://github.com/Karbashevskyi/ts-asserts#readme",
"keywords": [
"TypeScript",
"TS",
"Asserts",
"Assert"
],
"author": "Ivan Karbashevskyi",
"license": "MIT",
"devDependencies": {
"@types/jest": "^27.4.1",
"codelyzer": "^6.0.2",
"jest": "^27.5.1",
"prettier": "^2.6.2",
"ts-jest": "^27.1.4",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.6.3"
},
"dependencies": {
"ts-checkers": "^1.1.0"
},
"jest": {
"preset": "ts-jest",
"testPathIgnorePatterns": [
"<rootDir>/.git/",
"<rootDir>/.DS_Store/",
"<rootDir>/.vs/",
"<rootDir>/.vscode/",
"<rootDir>/lib/",
"<rootDir>/node_modules/",
"<rootDir>/src/"
],
"globals": {
"ts-jest": {
"tsconfig": "<rootDir>/tsconfig.json",
"stringifyContentPathRegex": "\\.html$"
}
}
}
}