This repository has been archived by the owner on Nov 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
78 lines (78 loc) · 2.66 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "asyncctx",
"version": "2.0.19",
"description": "an asynchronous execution context for TypeScript/JavaScript",
"main": "./index.js",
"types": "./index.d.ts",
"tags": [
"typescript",
"asynchronous context",
"execution context",
"CLS",
"continuation local storage",
"async_hooks"
],
"author": {
"email": "[email protected]",
"name": "Guenter Sandner"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/gms1/node-async-context.git"
},
"bugs": {
"url": "https://github.com/gms1/node-async-context/issues"
},
"homepage": "https://github.com/gms1/node-async-context",
"scripts": {
"clean": "rimraf dist/*",
"build": "tsc -p tsconfig.json",
"rebuild": "npm run clean && npm run build",
"lint": "eslint src --ext .ts,.tsx",
"test:run": "ts-node --project tsconfig.json node_modules/jasmine/bin/jasmine.js",
"test": "npm run build && npm run test:run",
"watch": "tsc -w -p tsconfig.json",
"coverage:run": "nyc -e .ts -x \"**/*.spec.ts\" -x \"src/asyncctx/spec/**/*\" ts-node --project tsconfig.json node_modules/jasmine/bin/jasmine.js",
"coverage:report": "nyc report --reporter=text-lcov",
"coverage:html": "nyc report --reporter=html",
"coverage:codecov": "nyc report --reporter=json --disable=gcov",
"docs": "compodoc .",
"prepublishOnly": "echo \"ERROR: please use the dist-folder for publishing\" && exit 1",
"release:build": "npm run clean && npm run build && npm run coverage:run && npm run lint && npm run _pubprep",
"release:publish": "npm run docs && cd dist && npm --access public publish",
"_pubprep": "build/sh/tsrun publish-prepare.ts",
"postlint": "npm run prettier-diff",
"prettier-diff": "prettier --list-different 'src/**/*.ts'",
"prettier": "prettier --write 'src/**/*.ts'"
},
"devDependencies": {
"@compodoc/compodoc": "^1.1.19",
"@types/fs-extra": "^9.0.13",
"@types/jasmine": "^4.0.3",
"@types/node": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-deprecation": "^1.3.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^39.2.2",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-prefer-arrow": "^1.2.3",
"fs-extra": "^10.1.0",
"jasmine": "^4.1.0",
"jasmine-spec-reporter": "^7.0.0",
"nyc": "^15.1.0",
"prettier": "^1.19.1",
"rimraf": "^3.0.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"typescript": {
"definition": "./index.d.ts"
},
"engines": {
"node": "^8.2 || >=9.0"
}
}