1234567891011121314151617181920212223242526272829303132333435363738394041 |
- {
- "name": "benchmarksman",
- "version": "1.0.0",
- "description": "Hit the mark with your benchmarks",
- "author": "Rivera Group <support@riverainc.com>",
- "contributors": [
- "Kyle P Davis <KDavis@riverainc.com>"
- ],
- "main": "benchmarksman.js",
- "bin": {
- "benchmarksman": "benchmarksman.js"
- },
- "scripts": {
- "test": "eval 'set -e' ';npm run '{mocha,jscs,jshint}",
- "mocha": "mocha test/{,**/}*_test.js",
- "jshint": "jshint -e js,json .",
- "jscs": "jscs *.js lib/ test/ example/",
- "benchmarks": "./benchmarksman.js example/*.js",
- "browserify": "N=benchmarksman; browserify --standalone $N ./lib/index.js | tee $N.web.js | uglifyjs -c > $N.web.min.js",
- "webpack": "N=benchmarksman; webpack -v -c --progress -d --output-library-target var --output-library $N --entry=./lib/ $N.web.js"
- },
- "repository": {
- "url": "git+https://github.com/RiveraGroup/benchmarksman.git#master"
- },
- "keywords": [
- "benchmark",
- "performance",
- "mocha",
- "test"
- ],
- "license": "MIT",
- "dependencies": {
- "benchmark": "^1.0.0"
- },
- "devDependencies": {
- "jshint": "^2.5.10",
- "jscs": "^1.8.1",
- "microtime": "^1.0.1",
- "mocha": "^1.21.5"
- }
- }
|