package.json 609 B

123456789101112131415161718192021222324252627
  1. {
  2. "author": "Roman Shtylman <shtylman@gmail.com>",
  3. "name": "process",
  4. "description": "process information for node.js and browsers",
  5. "keywords": [
  6. "process"
  7. ],
  8. "scripts": {
  9. "test": "mocha test.js",
  10. "browser": "zuul --no-coverage --ui mocha-bdd --local 8080 -- test.js"
  11. },
  12. "version": "0.11.10",
  13. "repository": {
  14. "type": "git",
  15. "url": "git://github.com/shtylman/node-process.git"
  16. },
  17. "license": "MIT",
  18. "browser": "./browser.js",
  19. "main": "./index.js",
  20. "engines": {
  21. "node": ">= 0.6.0"
  22. },
  23. "devDependencies": {
  24. "mocha": "2.2.1",
  25. "zuul": "^3.10.3"
  26. }
  27. }