-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.27 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
{
"name": "visitorlens-pro",
"version": "3.0.0",
"description": "A pure JavaScript visitor profiling library. No dependencies. No API key. Script tag, CommonJS, and ES Module support.",
"keywords": [
"javascript",
"browser-detection",
"geolocation",
"visitor-tracking",
"client-profiling",
"geoip",
"session-management",
"no-dependencies",
"pure-js",
"cross-browser",
"ie-support",
"umd",
"esm"
],
"author": "Fabien Conejero <https://github.com/madjeek-web>",
"license": "MIT",
"homepage": "https://github.com/madjeek-web/visitorlens-pro",
"repository": {
"type": "git",
"url": "https://github.com/madjeek-web/visitorlens-pro.git"
},
"main": "src/main/visitor.js",
"module": "src/main/visitor.esm.js",
"browser": "dist/visitor.min.js",
"files": [
"src/main/visitor.js",
"src/main/visitor.esm.js",
"dist/visitor.min.js",
"LICENSE",
"README.md"
],
"scripts": {
"build": "node scripts/build.js",
"test": "jest",
"prepublishOnly": "npm run build && npm test"
},
"devDependencies": {
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"terser": "^5.46.0"
},
"jest": {
"testEnvironment": "jsdom",
"testMatch": [
"**/test/**/*.test.js"
]
}
}