-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.35 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.35 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
{
"name": "hello-cls",
"version": "1.0.8",
"description": "A Node.js library that implements Continuation-Local Storage",
"main": "lib/cls.js",
"scripts": {
"lint": "standard",
"test:unit": "nyc mocha -R spec tests/unit/**/*.unit.js --recursive",
"test:int:mockapp": "nodemon --inspect tests/integration/mockApp/index.js",
"test:int:tester": "mocha -R spec tests/integration/**/*.specs.js --recursive --timeout 5000",
"test:int": "./tests/integration/run.sh",
"version:patch": "npm version patch",
"version:minor": "npm version minor",
"version:major": "npm version major"
},
"nyc": {
"reporter": [
"lcov",
"text-summary"
],
"include": [
"lib/*.js"
],
"all": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/hellocomet/hello-cls.git"
},
"keywords": [
"hello-cls",
"cls",
"continuation-local-storage",
"node",
"async_hooks"
],
"author": "alexandre.m@comet.co",
"license": "MIT",
"bugs": {
"url": "https://github.com/hellocomet/hello-cls/issues"
},
"homepage": "https://github.com/hellocomet/hello-cls#readme",
"devDependencies": {
"axios": "^0.21.1",
"chai": "^4.2.0",
"express": "^4.17.1",
"mocha": "^8.2.1",
"nodemon": "^2.0.7",
"nyc": "^14.1.1",
"standard": "^12.0.1",
"uuid": "^3.3.2"
}
}