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

122 lines
2.8 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",
"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 <code.npm@jxs.me> (https://jxs.me)",
"Kent C. Dodds <kent@doddsfamily.us> (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",
"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"
}
}