UNPKG

bluebird3

Version:
44 lines (43 loc) 1.2 kB
{ "name": "bluebird3", "version": "3.1.3", "description": "bluebird v3.x", "main": "./lib/", "author": { "name": "Overlook Motel" }, "repository": { "type": "git", "url": "https://github.com/overlookmotel/bluebird3.git" }, "bugs": { "url": "https://github.com/overlookmotel/bluebird3/issues" }, "dependencies": { "bluebird": "3.5.4" }, "devDependencies": { "mocha": "^5.2.0", "chai": "^4.1.2", "jshint": "^2.9.6", "istanbul": "^0.4.5", "coveralls": "^3.0.2" }, "keywords": [ "bluebird" ], "scripts": { "test": "npm run jshint && npm run test-main", "jshint": "jshint lib test", "test-main": "mocha --check-leaks --colors -t 10000 --reporter spec 'test/**/*.test.js'", "cover": "npm run cover-main && rm -rf coverage", "coveralls": "npm run cover-main && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage", "cover-main": "COVERAGE=true istanbul cover _mocha --report lcovonly -- -R spec 'test/**/*.test.js'", "travis": "if [ $COVERAGE ]; then npm run coveralls; else npm run test; fi" }, "engines": { "node": ">=0.10.0" }, "readmeFilename": "README.md", "license": "MIT" }