-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.22 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
{
"name": "async-hooks-context",
"version": "4.0.1",
"description": "Creating request-scoped contexts using the async_hooks lib",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "mocha --config ./test/support/unit.yml",
"coverage": "nyc --reporter=lcov npm run test",
"lint": "tslint -c tslint.json 'src/**/*.ts'"
},
"files": [
"lib",
"test",
"LICENSE",
"tsconfig.json"
],
"keywords": [
"async_hooks",
"context",
"global",
"variables",
"requests",
"async"
],
"author": "Alex Pickering",
"license": "ISC",
"dependencies": {
"uuid": "3.4.0"
},
"devDependencies": {
"@types/chai": "4.2.13",
"@types/chai-as-promised": "7.1.3",
"@types/mocha": "8.0.3",
"@types/node": "14.11.5",
"@types/sinon": "9.0.8",
"@types/sinon-chai": "3.2.5",
"@types/uuid": "3.4.6",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"mocha": "^9.1.3",
"nyc": "15.1.0",
"sinon": "9.2.0",
"sinon-chai": "3.5.0",
"source-map-support": "0.5.19",
"ts-node": "9.0.0",
"tsconfig-paths": "3.11.0",
"tslint": "6.1.3",
"tslint-config-standard": "9.0.0",
"typescript": "4.0.3"
}
}