ng-pom-testing
Version:
Utilities for easy DOM testing using the page-object-model pattern
50 lines (49 loc) • 1.3 kB
JSON
{
"name": "ng-pom-testing",
"version": "1.0.117",
"description": "Utilities for easy DOM testing using the page-object-model pattern",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"test": "jest --config jestconfig.json",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joelstevick/ng-pom-testing.git"
},
"keywords": [
"Angular",
"Testing",
"DOM"
],
"author": "Joel Stevick",
"license": "ISC",
"bugs": {
"url": "https://github.com/joelstevick/ng-pom-testing/issues"
},
"homepage": "https://github.com/joelstevick/ng-pom-testing#readme",
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/lodash": "^4.14.172",
"jest": "^27.1.0",
"prettier": "^2.3.2",
"ts-jest": "^27.0.5",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.4.2"
},
"dependencies": {
"lodash": "^4.17.21"
}
}