-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.79 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
{
"name": "execution-time-tracker-decorator",
"version": "2.2.0",
"description": "Easily track and log execution time of your methods in Node and Browser apps",
"scripts": {
"lint": "eslint \"src/**\" \"test/**\"",
"lint-fix": "eslint \"src/**\" \"test/**\" --fix",
"build": "tsc -p tsconfig.build.json",
"build-publish": "tsc -p tsconfig.publish.json",
"test": "karma start karma.conf.js"
},
"files": [
"index.js",
"index.d.ts"
],
"main": "index.js",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/JasonMejane/execution-time-tracker-decorator.git"
},
"keywords": [
"execution",
"time",
"track",
"decorator",
"log",
"typescript",
"node",
"browser"
],
"author": "Jason Méjane",
"license": "MIT",
"bugs": {
"email": "jason.mejane@gmail.com",
"url": "https://github.com/JasonMejane/execution-time-tracker-decorator/issues"
},
"homepage": "https://github.com/JasonMejane/execution-time-tracker-decorator#readme",
"devDependencies": {
"@types/jasmine": "5.1.1",
"@types/node": "20.8.8",
"@typescript-eslint/eslint-plugin": "6.9.0",
"@typescript-eslint/parser": "6.9.0",
"eslint": "8.52.0",
"eslint-plugin-prettier": "5.0.1",
"jasmine": "5.1.0",
"jasmine-core": "5.1.1",
"karma": "6.4.2",
"karma-chrome-launcher": "3.2.0",
"karma-coverage": "2.2.1",
"karma-coverage-istanbul-reporter": "3.0.3",
"karma-firefox-launcher": "2.1.2",
"karma-jasmine": "5.1.0",
"karma-typescript": "5.5.4",
"ts-node": "10.9.1",
"typescript": "5.2.2"
}
}