{ "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", "module": "lib/angularjs-testing-library.mjs", "engines": { "node": ">=10" }, "scripts": { "prebuild": "rimraf lib", "build": "rollup -c", "lint": "eslint --cache .", "test": "jest", "validate": "concurrently yarn:validate:*", "validate:lnt": "yarn --silent lint", "validate:bld": "yarn --silent build", "validate:tst": "yarn --silent test" }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "*.{js}": [ "prettier --write", "eslint", "git add" ], "*.{json,css,md}": [ "prettier --write", "git add" ], "README.md": [ "doctoc --maxlevel 3 --notitle" ] }, "jest": { "setupFilesAfterEnv": [ "@testing-library/jest-dom/extend-expect" ] }, "files": [ "lib", "dont-cleanup-after-each.js" ], "keywords": [ "testing", "angularjs", "ui", "dom", "jsdom", "unit", "integration", "functional", "end-to-end", "e2e" ], "contributors": [ "Jason Staten (https://jxs.me)", "Kent C. Dodds (http://kentcdodds.com/)" ], "license": "MIT", "dependencies": { "@testing-library/dom": "^6.3.0" }, "devDependencies": { "@babel/core": "^7.7.5", "@babel/plugin-proposal-class-properties": "^7.7.4", "@babel/plugin-transform-modules-commonjs": "^7.7.5", "@semantic-release/git": "^7.0.17", "@testing-library/jest-dom": "^4.1.0", "angular": "^1.7.8", "angular-mocks": "^1.7.8", "babel-eslint": "^10.0.3", "babel-jest": "^24.9.0", "concurrently": "^5.0.0", "doctoc": "^1.4.0", "eslint": "^6.7.2", "husky": "^3.1.0", "jest-cli": "^24.9.0", "lint-staged": "^9.5.0", "rimraf": "^3.0.0", "rollup": "^1.27.8", "semantic-release": "^15.13.30" }, "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", "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" } }