package.json 796 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "name": "assert",
  3. "description": "commonjs assert - node.js api compatible",
  4. "keywords": [
  5. "assert"
  6. ],
  7. "version": "1.4.1",
  8. "homepage": "https://github.com/defunctzombie/commonjs-assert",
  9. "repository": {
  10. "type": "git",
  11. "url": "git://github.com/defunctzombie/commonjs-assert.git"
  12. },
  13. "main": "./assert.js",
  14. "dependencies": {
  15. "util": "0.10.3"
  16. },
  17. "devDependencies": {
  18. "mocha": "~1.21.4",
  19. "zuul": "~3.10.0",
  20. "zuul-ngrok": "^4.0.0"
  21. },
  22. "license": "MIT",
  23. "scripts": {
  24. "test-node": "mocha --ui qunit test.js",
  25. "test-browser": "zuul -- test.js",
  26. "test": "npm run test-node && npm run test-browser",
  27. "test-native": "TEST_NATIVE=true mocha --ui qunit test.js",
  28. "browser-local": "zuul --no-coverage --local 8000 -- test.js"
  29. }
  30. }