package.json
2.58 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
79
80
81
82
83
84
85
86
87
88
89
90
{
"_args": [
[
"cls-bluebird@2.1.0",
"/Users/ye/Desktop/NodeBook/nodejs-book/ch12/12.4/node-auction"
]
],
"_from": "cls-bluebird@2.1.0",
"_id": "cls-bluebird@2.1.0",
"_inBundle": false,
"_integrity": "sha1-N+8eCAqP+1XC9BZPU28ZGeeWiu4=",
"_location": "/cls-bluebird",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "cls-bluebird@2.1.0",
"name": "cls-bluebird",
"escapedName": "cls-bluebird",
"rawSpec": "2.1.0",
"saveSpec": null,
"fetchSpec": "2.1.0"
},
"_requiredBy": [
"/sequelize"
],
"_resolved": "https://registry.npmjs.org/cls-bluebird/-/cls-bluebird-2.1.0.tgz",
"_spec": "2.1.0",
"_where": "/Users/ye/Desktop/NodeBook/nodejs-book/ch12/12.4/node-auction",
"author": {
"name": "Tim Beyer",
"email": "tim.beyer@gmail.com"
},
"bugs": {
"url": "https://github.com/TimBeyer/cls-bluebird/issues"
},
"dependencies": {
"is-bluebird": "^1.0.2",
"shimmer": "^1.1.0"
},
"description": "Make bluebird work with the continuation-local-storage module.",
"devDependencies": {
"bluebird": "^2.10.2",
"bluebird2": "^3.0.0",
"bluebird3": "^3.1.1",
"chai": "^4.1.2",
"continuation-local-storage": "^3.2.1",
"coveralls": "^3.0.0",
"istanbul": "^0.4.5",
"jshint": "^2.9.5",
"lodash": "^4.17.4",
"mocha": "^4.0.1"
},
"homepage": "https://github.com/TimBeyer/cls-bluebird#readme",
"keywords": [
"continuation-local-storage",
"cls",
"bluebird",
"continuation",
"local",
"storage",
"promise",
"promises",
"async",
"thread",
"glue",
"baling-wire",
"patch"
],
"license": "BSD-2-Clause",
"main": "lib/index.js",
"name": "cls-bluebird",
"repository": {
"type": "git",
"url": "git+https://github.com/TimBeyer/cls-bluebird.git"
},
"scripts": {
"cover": "npm run cover-main && rm -rf coverage",
"cover-main": "COVERAGE=true BLUEBIRD_VERSION=3 istanbul cover _mocha --report lcovonly -- -R spec 'test/**/*.test.js'",
"coveralls": "npm run cover-main && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage",
"jshint": "jshint lib test",
"test": "npm run jshint && npm run test-all",
"test-all": "npm run test-bluebird2 && npm run test-bluebird3",
"test-bluebird2": "BLUEBIRD_VERSION=2 npm run test-main",
"test-bluebird3": "BLUEBIRD_VERSION=3 npm run test-main",
"test-main": "mocha 'test/**/*.test.js'",
"travis": "bin/travis.sh"
},
"version": "2.1.0"
}