danger-plugin-jest
Version:
Danger plugin for Jest
66 lines • 1.58 kB
JSON
{
"name": "danger-plugin-jest",
"version": "1.3.0",
"description": "Danger plugin for Jest",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"precommit": "lint-staged",
"prepush": "npm run test",
"commitmsg": "validate-commit-msg",
"build": "tsc -p tsconfig.json",
"lint": "eslint 'src/**/*.ts'",
"test": "jest",
"prepublish": "npm run build",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/macklinu/danger-plugin-jest.git"
},
"keywords": [
"danger",
"danger-plugin",
"jest"
],
"author": "Macklin Underdown <macklinu@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/macklinu/danger-plugin-jest/issues"
},
"homepage": "https://github.com/macklinu/danger-plugin-jest#readme",
"dependencies": {
"strip-ansi": "^4.0.0"
},
"devDependencies": {
"@types/jest": "^24.0.15",
"@types/node": "^8.0.37",
"danger": "^9.0.3",
"eslint": "^6.0.1",
"eslint-config-macklinu": "^2.0.1",
"husky": "^0.14.3",
"jest": "^24.8.0",
"lint-staged": "^4.2.3",
"prettier": "^1.18.2",
"semantic-release": "^6.3.6",
"ts-jest": "^24.0.2",
"typescript": "^3.5.3",
"validate-commit-msg": "^2.12.1"
},
"jest": {
"preset": "ts-jest"
},
"lint-staged": {
"src/**/*.ts": [
"prettier --write",
"git add"
],
"*.json": [
"prettier --write",
"git add"
]
}
}