package.json 743 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "name": "assertion-error",
  3. "version": "1.1.0",
  4. "description": "Error constructor for test and validation frameworks that implements standardized AssertionError specification.",
  5. "author": "Jake Luer <jake@qualiancy.com> (http://qualiancy.com)",
  6. "license": "MIT",
  7. "types": "./index.d.ts",
  8. "keywords": [
  9. "test",
  10. "assertion",
  11. "assertion-error"
  12. ],
  13. "repository": {
  14. "type": "git",
  15. "url": "git@github.com:chaijs/assertion-error.git"
  16. },
  17. "engines": {
  18. "node": "*"
  19. },
  20. "main": "./index",
  21. "scripts": {
  22. "test": "make test"
  23. },
  24. "dependencies": {},
  25. "devDependencies": {
  26. "component": "*",
  27. "typescript": "^2.6.1"
  28. }
  29. }