package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "benchmarksman",
  3. "version": "1.0.0",
  4. "description": "Hit the mark with your benchmarks",
  5. "author": "Rivera Group <support@riverainc.com>",
  6. "contributors": [
  7. "Kyle P Davis <KDavis@riverainc.com>"
  8. ],
  9. "main": "benchmarksman.js",
  10. "bin": {
  11. "benchmarksman": "benchmarksman.js"
  12. },
  13. "scripts": {
  14. "test": "eval 'set -e' ';npm run '{mocha,jscs,jshint}",
  15. "mocha": "mocha test/{,**/}*_test.js",
  16. "jshint": "jshint -e js,json .",
  17. "jscs": "jscs *.js lib/ test/ example/",
  18. "benchmarks": "./benchmarksman.js example/*.js",
  19. "browserify": "N=benchmarksman; browserify --standalone $N ./lib/index.js | tee $N.web.js | uglifyjs -c > $N.web.min.js",
  20. "webpack": "N=benchmarksman; webpack -v -c --progress -d --output-library-target var --output-library $N --entry=./lib/ $N.web.js"
  21. },
  22. "repository": {
  23. "url": "git+https://github.com/RiveraGroup/benchmarksman.git#master"
  24. },
  25. "keywords": [
  26. "benchmark",
  27. "performance",
  28. "mocha",
  29. "test"
  30. ],
  31. "license": "MIT",
  32. "dependencies": {
  33. "benchmark": "^1.0.0"
  34. },
  35. "devDependencies": {
  36. "jshint": "^2.5.10",
  37. "jscs": "^1.8.1",
  38. "microtime": "^1.0.1",
  39. "mocha": "^1.21.5"
  40. }
  41. }