package.json
1.8 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
{
"name": "cls-bluebird",
"version": "2.0.1",
"description": "Make bluebird work with the continuation-local-storage module.",
"main": "lib/index.js",
"scripts": {
"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'",
"jshint": "jshint lib test",
"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 BLUEBIRD_VERSION=3 istanbul cover _mocha --report lcovonly -- -R spec 'test/**/*.test.js'",
"travis": "bin/travis.sh"
},
"repository": {
"type": "git",
"url": "https://github.com/TimBeyer/cls-bluebird.git"
},
"keywords": [
"continuation-local-storage",
"cls",
"bluebird",
"continuation",
"local",
"storage",
"promise",
"promises",
"async",
"thread",
"glue",
"baling-wire",
"patch"
],
"author": "Tim Beyer <tim.beyer@gmail.com>",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/TimBeyer/cls-bluebird/issues"
},
"dependencies": {
"shimmer": "^1.1.0",
"is-bluebird": "^1.0.2"
},
"devDependencies": {
"mocha": "^3.0.2",
"chai": "^3.5.0",
"jshint": "^2.9.3",
"istanbul": "^0.4.5",
"coveralls": "^2.11.12",
"continuation-local-storage": "^3.1.7",
"bluebird": "^2.10.2",
"bluebird2": "^3.0.0",
"bluebird3": "^3.0.6",
"lodash": "^4.15.0"
},
"_from": "cls-bluebird@2.0.1",
"_resolved": "http://registry.npm.taobao.org/cls-bluebird/download/cls-bluebird-2.0.1.tgz"
}