-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.44 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.44 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
{
"name": "motion-attestation",
"version": "1.0.0",
"description": "Human interaction verification through behavioral biometrics. Analyzes mouse movement, click patterns, keystroke dynamics, scroll behavior, touch pressure, and device sensors to distinguish humans from bots.",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/libcaptcha/motion-attestation.git"
},
"main": "./src/index.js",
"types": "./src/index.d.ts",
"exports": {
".": {
"types": "./src/index.d.ts",
"default": "./src/index.js"
}
},
"files": [
"src/"
],
"scripts": {
"test": "node --test test/*.test.js",
"test:e2e": "node --test test/e2e/playwright.test.js",
"test:e2e:selenium": "node --test test/e2e/webdriver.test.js",
"test:all": "node --test test/*.test.js test/e2e/playwright.test.js",
"example": "node example/server.js"
},
"keywords": [
"attestation",
"bot-detection",
"behavioral-biometrics",
"mouse-tracking",
"keystroke-dynamics",
"human-verification",
"anti-automation",
"fitts-law"
],
"author": "libcaptcha",
"license": "MIT",
"engines": {
"node": ">=18"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"playwright": "^1.58.2",
"selenium-webdriver": "^4.41.0"
}
}