You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
angularjs-testing-library/package.json

132 lines
3.1 KiB

{
"name": "angularjs-testing-library",
"version": "0.0.0-semantic-release",
"description": "Simple and complete AngularJS testing utilities that encourage good testing practices.",
"main": "lib/index.js",
"engines": {
"node": ">=12"
},
"scripts": {
"prebuild": "rimraf lib",
"build": "tsc --noEmit false",
"lint": "eslint --ext .ts,.js --cache .",
"test": "jest",
"validate": "concurrently yarn:validate:*",
"validate:lint": "yarn --silent lint",
"validate:build": "yarn --silent build",
"validate:test": "yarn --silent test"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js}": [
"prettier --write",
"eslint --fix",
"git add"
],
"*.{ts}": [
"prettier --write",
"eslint --fix",
"git add"
],
"*.{json,css,md}": [
"prettier --write",
"git add"
],
"README.md": [
"doctoc --maxlevel 3 --notitle"
]
},
"files": [
"lib/*.{js,ts}",
"dont-cleanup-after-each.js"
],
"keywords": [
"testing",
"angularjs",
"ui",
"dom",
"jsdom",
"unit",
"integration",
"functional",
"end-to-end",
"e2e"
],
"contributors": [
"Jason Staten <code.npm@jxs.me> (https://jxs.me)",
"Kent C. Dodds <kent@doddsfamily.us> (http://kentcdodds.com/)"
],
"license": "MIT",
"dependencies": {
"@testing-library/dom": "^8.5.0"
},
"devDependencies": {
"@semantic-release/git": "^7.0.17",
"@testing-library/jest-dom": "^4.1.0",
"@types/angular": "^1.6.57",
"@types/angular-mocks": "^1.7.0",
"@types/jest": "^27.0.1",
"@types/node": "^12.12.16",
"@typescript-eslint/parser": "^4.31.1",
"angular": "^1.7.8",
"angular-mocks": "^1.7.8",
"concurrently": "^5.0.0",
"doctoc": "^1.4.0",
"eslint": "^7.32.0",
"husky": "^3.1.0",
"jest": "^27.2.0",
"jest-cli": "^27.2.0",
"lint-staged": "^9.5.0",
"prettier": "^2.4.0",
"rimraf": "^3.0.0",
"semantic-release": "^15.13.30",
"ts-jest": "^27.0.5",
"typescript": "^4.4.3"
},
"peerDependencies": {
"angular": "*",
"angular-mocks": "*"
},
"eslintIgnore": [
"node_modules",
"coverage",
"lib",
"*.d.ts"
],
"repository": {
"type": "git",
"url": "https://git.sr.ht/~statianzo/angularjs-testing-library"
},
"homepage": "https://git.sr.ht/~statianzo/angularjs-testing-library",
"bugs": {
"url": "https://todo.sr.ht/~statianzo/angularjs-testing-library",
"email": "~statianzo/angularjs-testing-library@todo.sr.ht"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": false
}
]
],
"repositoryUrl": "git@git.sr.ht:~statianzo/angularjs-testing-library"
},
"jest": {
"preset": "ts-jest",
"setupFilesAfterEnv": [
"@testing-library/jest-dom/extend-expect",
"<rootDir>/jest-circus-setup.js"
],
"testEnvironment": "jsdom"
}
}