You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.4 KiB
51 lines
1.4 KiB
{
|
|
"name": "is-bluebird",
|
|
"version": "1.0.2",
|
|
"description": "Is this a bluebird promise I see before me?",
|
|
"main": "./lib/",
|
|
"author": {
|
|
"name": "Overlook Motel"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/overlookmotel/is-bluebird.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/overlookmotel/is-bluebird/issues"
|
|
},
|
|
"dependencies": {
|
|
},
|
|
"devDependencies": {
|
|
"bluebird2": "^3.0.0",
|
|
"bluebird3": "^3.0.6",
|
|
"mocha": "^3.0.2",
|
|
"chai": "^3.5.0",
|
|
"jshint": "^2.9.3",
|
|
"istanbul": "^0.4.5",
|
|
"coveralls": "^2.11.12"
|
|
},
|
|
"keywords": [
|
|
"bluebird",
|
|
"promise",
|
|
"is",
|
|
"instance",
|
|
"constructor",
|
|
"version",
|
|
"then",
|
|
"check",
|
|
"test"
|
|
],
|
|
"scripts": {
|
|
"test": "if [ $COVERAGE ]; then npm run coveralls; else npm run jshint && npm run test-main; fi",
|
|
"jshint": "./node_modules/.bin/jshint lib test",
|
|
"test-main": "./node_modules/mocha/bin/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 | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
|
|
"cover-main": "COVERAGE=true ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- -R spec 'test/**/*.test.js'"
|
|
},
|
|
"engines": {
|
|
"node": ">=0.10.0"
|
|
},
|
|
"readmeFilename": "README.md",
|
|
"license": "MIT"
|
|
}
|
|
|