1234567891011121314151617181920212223242526272829 |
- {
- "name": "benchmarksman",
- "version": "1.0.0",
- "description": "",
- "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": "browserify --standalone benchmarksman ./lib/index.js > benchmarksman.web.js",
- "webpack": "webpack -v -c --progress -d --output-library-target var --output-library benchmarksman --entry=./lib/ benchmarksman.web.js"
- },
- "author": "",
- "license": "MIT",
- "dependencies": {
- "benchmark": "^1.0.0"
- },
- "devDependencies": {
- "jshint": "^2.5.10",
- "jscs": "^1.8.1",
- "microtime": "^1.0.1",
- "mocha": "^1.21.5"
- }
- }
|