package.json 664 B

123456789101112131415161718192021222324252627
  1. {
  2. "name": "assertion-error"
  3. , "version": "1.0.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. , "keywords": [
  8. "test"
  9. , "assertion"
  10. , "assertion-error"
  11. ]
  12. , "repository": {
  13. "type": "git"
  14. , "url": "git@github.com:chaijs/assertion-error.git"
  15. }
  16. , "engines": {
  17. "node": "*"
  18. }
  19. , "main": "./index"
  20. , "scripts": {
  21. "test": "make test"
  22. }
  23. , "dependencies": {}
  24. , "devDependencies": {
  25. "component": "*"
  26. }
  27. }