-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.31 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.31 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
54
55
56
{
"name": "@tirreno/tirreno-tracker",
"version": "1.0.0-b6",
"description": "Node.js implementation of the tirreno API.",
"main": "lib/Tracker.js",
"type": "module",
"exports": {
".": "./lib/Tracker.js",
"./express": "./lib/adapters/Express.js",
"./koa": "./lib/adapters/Koa.js"
},
"files": [
"lib"
],
"scripts": {
"test": "node --test --experimental-test-coverage",
"lint": "eslint ."
},
"keywords": [
"tirreno",
"security-analytics",
"fraud-detection",
"audit-trail",
"analytics",
"monitoring",
"bot-detection",
"antispam",
"application-monitoring"
],
"author": "team@tirreno.com",
"license": "BSD-3-Clause",
"devDependencies": {
"@eslint/js": "^9.32.0",
"eslint": "^9.32.0",
"eslint-config-prettier": "^10.1.8",
"express": "^5.1.0",
"globals": "^16.3.0",
"prettier": "3.6.2"
},
"dependencies": {
"qs": "^6.14.0"
},
"directories": {
"example": "examples",
"lib": "lib",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tirrenotechnologies/tirreno-nodejs-tracker.git"
},
"bugs": {
"url": "https://github.com/tirrenotechnologies/tirreno-nodejs-tracker/issues"
},
"homepage": "https://github.com/tirrenotechnologies/tirreno-nodejs-tracker#readme"
}