package.json
2.28 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"_args": [
[
"is-bluebird@1.0.2",
"/Users/ye/Desktop/NodeBook/nodejs-book/ch12/12.4/node-auction"
]
],
"_from": "is-bluebird@1.0.2",
"_id": "is-bluebird@1.0.2",
"_inBundle": false,
"_integrity": "sha1-CWQ5Bg9KpBGr7hkUOoTWpVNG1uI=",
"_location": "/is-bluebird",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "is-bluebird@1.0.2",
"name": "is-bluebird",
"escapedName": "is-bluebird",
"rawSpec": "1.0.2",
"saveSpec": null,
"fetchSpec": "1.0.2"
},
"_requiredBy": [
"/cls-bluebird"
],
"_resolved": "https://registry.npmjs.org/is-bluebird/-/is-bluebird-1.0.2.tgz",
"_spec": "1.0.2",
"_where": "/Users/ye/Desktop/NodeBook/nodejs-book/ch12/12.4/node-auction",
"author": {
"name": "Overlook Motel"
},
"bugs": {
"url": "https://github.com/overlookmotel/is-bluebird/issues"
},
"dependencies": {},
"description": "Is this a bluebird promise I see before me?",
"devDependencies": {
"bluebird2": "^3.0.0",
"bluebird3": "^3.0.6",
"chai": "^3.5.0",
"coveralls": "^2.11.12",
"istanbul": "^0.4.5",
"jshint": "^2.9.3",
"mocha": "^3.0.2"
},
"engines": {
"node": ">=0.10.0"
},
"homepage": "https://github.com/overlookmotel/is-bluebird#readme",
"keywords": [
"bluebird",
"promise",
"is",
"instance",
"constructor",
"version",
"then",
"check",
"test"
],
"license": "MIT",
"main": "./lib/",
"name": "is-bluebird",
"repository": {
"type": "git",
"url": "git+https://github.com/overlookmotel/is-bluebird.git"
},
"scripts": {
"cover": "npm run cover-main && rm -rf coverage",
"cover-main": "COVERAGE=true ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- -R spec 'test/**/*.test.js'",
"coveralls": "npm run cover-main && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"jshint": "jshint lib test",
"test": "if [ $COVERAGE ]; then npm run coveralls; else npm run jshint && npm run test-main; fi",
"test-main": "./node_modules/mocha/bin/mocha --check-leaks --colors -t 10000 --reporter spec 'test/**/*.test.js'"
},
"version": "1.0.2"
}