-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.29 KB
/
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
49
50
51
52
53
54
55
{
"name": "context-dive",
"version": "2.2.6",
"description": "dive to async event-loop calls with context",
"main": "dist/index.js",
"scripts": {
"build": "rm -rf ./dist && mkdir ./dist && cp -r ./src/* ./dist",
"example": "node example/simple.js && node example/promise.js",
"test": "mocha test/index --allow-uncaught && mocha test/nested-jump.2.1 && mocha test/nested-jump.2.2",
"postinstall": "npm run build"
},
"files": [
"README.md",
"test",
"src",
"example"
],
"directories": {
"lib": "dist/",
"src": "src/",
"example": "example/",
"test": "test/"
},
"engines" : {
"node" : ">=8.7"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wentout/dive.git"
},
"keywords": [
"cls",
"continuation local storage",
"context",
"execution scope",
"execution context",
"logical context",
"async_hooks",
"async storage"
],
"author": "[email protected]",
"contributors": [
"ak239 - Aleksei Koziatinskii <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/wentout/dive/issues"
},
"homepage": "https://github.com/wentout/dive#readme",
"devDependencies": {
"eslint": "^5.6.0",
"eslint-plugin-mocha": "^5.2.0",
"mocha": "^5.2.0"
}
}