package.json
1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"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",
"_from": "is-bluebird@1.0.2",
"_resolved": "http://registry.npm.taobao.org/is-bluebird/download/is-bluebird-1.0.2.tgz"
}