package.json 866 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "name": "benchmarksman",
  3. "version": "1.0.0",
  4. "description": "",
  5. "main": "benchmarksman.js",
  6. "bin": {
  7. "benchmarksman": "benchmarksman.js"
  8. },
  9. "scripts": {
  10. "test": "eval 'set -e' ';npm run '{mocha,jscs,jshint}",
  11. "mocha": "mocha test/{,**/}*_test.js",
  12. "jshint": "jshint -e js,json .",
  13. "jscs": "jscs *.js lib/ test/ example/",
  14. "benchmarks": "./benchmarksman.js example/*.js",
  15. "browserify": "browserify --standalone benchmarksman ./lib/index.js > benchmarksman.web.js",
  16. "webpack": "webpack -v -c --progress -d --output-library-target var --output-library benchmarksman --entry=./lib/ benchmarksman.web.js"
  17. },
  18. "author": "",
  19. "license": "MIT",
  20. "dependencies": {
  21. "benchmark": "^1.0.0"
  22. },
  23. "devDependencies": {
  24. "jshint": "^2.5.10",
  25. "jscs": "^1.8.1",
  26. "microtime": "^1.0.1",
  27. "mocha": "^1.21.5"
  28. }
  29. }