Path: blob/master/node_modules/asynckit/package.json
3973 views
{1"name": "asynckit",2"version": "0.4.0",3"description": "Minimal async jobs utility library, with streams support",4"main": "index.js",5"scripts": {6"clean": "rimraf coverage",7"lint": "eslint *.js lib/*.js test/*.js",8"test": "istanbul cover --reporter=json tape -- 'test/test-*.js' | tap-spec",9"win-test": "tape test/test-*.js",10"browser": "browserify -t browserify-istanbul test/lib/browserify_adjustment.js test/test-*.js | obake --coverage | tap-spec",11"report": "istanbul report",12"size": "browserify index.js | size-table asynckit",13"debug": "tape test/test-*.js"14},15"pre-commit": [16"clean",17"lint",18"test",19"browser",20"report",21"size"22],23"repository": {24"type": "git",25"url": "git+https://github.com/alexindigo/asynckit.git"26},27"keywords": [28"async",29"jobs",30"parallel",31"serial",32"iterator",33"array",34"object",35"stream",36"destroy",37"terminate",38"abort"39],40"author": "Alex Indigo <[email protected]>",41"license": "MIT",42"bugs": {43"url": "https://github.com/alexindigo/asynckit/issues"44},45"homepage": "https://github.com/alexindigo/asynckit#readme",46"devDependencies": {47"browserify": "^13.0.0",48"browserify-istanbul": "^2.0.0",49"coveralls": "^2.11.9",50"eslint": "^2.9.0",51"istanbul": "^0.4.3",52"obake": "^0.1.2",53"phantomjs-prebuilt": "^2.1.7",54"pre-commit": "^1.1.3",55"reamde": "^1.1.0",56"rimraf": "^2.5.2",57"size-table": "^0.2.0",58"tap-spec": "^4.1.1",59"tape": "^4.5.1"60},61"dependencies": {}62}636465