-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.58 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.58 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
{
"name": "contextor",
"description": "Package allowing to pass a context along an asynchronous process",
"version": "0.6.1",
"author": "Thomas Prelot <tprelot@gmail.com> (https://github.com/Gnucki)",
"contributors": [],
"keywords": [
"context",
"asynchronous",
"async",
"process",
"callback",
"promise",
"request",
"chain"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/gnodi/contextor"
},
"main": "index.js",
"scripts": {
"check": "gnodi-lint && npm run test-coverage",
"check-ci": "npm run lint && npm run test-coveralls",
"lint": "gnodi-lint",
"lint-fix": "gnodi-lint --fix",
"test": "NODE_ENV=test CONTEXTOR_CLEAN_CHECK_CONTEXT_SIZE=2 CONTEXTOR_CONTEXT_TTL=200 mocha --recursive index.js test.js",
"test-coverage": "nyc npm test && nyc report --reporter text-summary",
"test-coveralls": "nyc npm test && nyc report --reporter text-lcov | coveralls",
"test-debug": "NODE_ENV=test CONTEXTOR_CLEAN_CHECK_CONTEXT_SIZE=2 CONTEXTOR_CONTEXT_TTL=200 mocha --recursive --full-trace --check-leaks index.js test.js",
"test-watch": "NODE_ENV=test CONTEXTOR_CLEAN_CHECK_CONTEXT_SIZE=2 CONTEXTOR_CONTEXT_TTL=200 mocha -w -b --recursive index.js test.js",
"preversion": "npm run check",
"postversion": "git push && git push --tags"
},
"bin": {},
"engines": {
"node": ">=8",
"npm": ">=5"
},
"dependencies": {},
"devDependencies": {
"@gnodi/eslint-config": "^0.4.0",
"chai": "^4.2.0",
"coveralls": "^3.0.3",
"mocha": "^6.1.4",
"nyc": "^14.1.1"
}
}