-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1015 Bytes
/
package.json
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
{
"name": "cls-bluebird2",
"version": "0.0.1",
"description": "Patch Bluebird promise library to support continuation-local-storage",
"main": "./lib/",
"author": {
"name": "Overlook Motel"
},
"repository": {
"type": "git",
"url": "https://github.com/overlookmotel/cls-bluebird2.git"
},
"bugs": {
"url": "https://github.com/overlookmotel/cls-bluebird2/issues"
},
"dependencies": {
"bluebird": "^3.3.5",
"shimmer": "^1.1.0"
},
"devDependencies": {
"mocha": "^2.2.4",
"chai": "^2.3.0",
"jshint": "^2.7.0",
"istanbul": "^0.3.14",
"coveralls": "^2.11.2"
},
"keywords": [
"bluebird",
"promise",
"promises",
"cls",
"continuation-local-storage"
],
"scripts": {
"test": "make test",
"cover": "make cover"
},
"engines": {
"node": ">=0.10.0"
},
"readmeFilename": "README.md",
"licenses": [
{
"type": "MIT",
"url": "http://github.com/overlookmotel/cls-bluebird2/raw/master/License"
}
]
}