-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
65 lines (65 loc) · 1.96 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
{
"name": "execution-time-decorators",
"version": "2.0.3",
"author": "norbornen",
"license": "MIT",
"main": "dist/index.js",
"types": "dist",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/norbornen/execution-time-decorator.git"
},
"keywords": [
"timer",
"execution time",
"performance",
"time tracker",
"decorator",
"typescript"
],
"bugs": {
"url": "https://github.com/norbornen/execution-time-decorator/issues"
},
"homepage": "https://github.com/norbornen/execution-time-decorator#readme",
"scripts": {
"prebuild": "rimraf dist",
"build": "npm run build:common && npm run build:types",
"build:common": "esbuild src/index.ts --platform=node --target=es2021 --outdir=dist --sourcemap --bundle --minify",
"build:types": "tsc --emitDeclarationOnly --declaration --project tsconfig.json",
"build:ts": "tsc --strict",
"prepublishOnly": "npm run build",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" && tsc --noEmit",
"test": "jest --verbose --env=node",
"test:cov": "jest --coverage --verbose --env=node",
"coverage": "jest --coverage --verbose --env=node --coverageReporters=\"json-summary\"",
"example": "ts-node examples",
"script": "ts-node"
},
"devDependencies": {
"@types/jest": "^29.5.2",
"@types/node": "20",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"esbuild": "^0.18.6",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-import-helpers": "^1.3.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"jest": "^29.5.0",
"pino": "^8.14.1",
"prettier": "^2.8.8",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
},
"engines": {
"node": ">=10"
}
}