package.json 700 B

1234567891011121314151617181920212223242526
  1. {
  2. "name": "precond",
  3. "description": "Precondition checking utilities.",
  4. "version": "0.2.3",
  5. "author": "Mathieu Turcotte <turcotte.mat@gmail.com>",
  6. "keywords": ["precondition", "assert", "invariant", "contract", "condition"],
  7. "repository": {
  8. "type": "git",
  9. "url": "https://github.com/MathieuTurcotte/node-precond.git"
  10. },
  11. "devDependencies": {
  12. "nodeunit": "0.9",
  13. "jshint": "2.5"
  14. },
  15. "scripts": {
  16. "pretest": "node_modules/.bin/jshint lib/ examples/ index.js",
  17. "test": "node_modules/.bin/nodeunit tests/"
  18. },
  19. "engines": {
  20. "node": ">= 0.6"
  21. },
  22. "files": [
  23. "index.js",
  24. "lib"
  25. ]
  26. }