-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
49 lines (49 loc) · 1.15 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
{
"author": "Evan Tahler <[email protected]>",
"name": "browser_fingerprint",
"description": "uniquely identify browsers",
"version": "2.0.5",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://github.com/actionhero/browser_fingerprint.git"
},
"main": "./dist/browserFingerprint",
"types": "./dist/browserFingerprint",
"keywords": [
"browser",
"fingerprint",
"fingerprinting",
"session",
"browserFingerprint",
"browser_fingerprint"
],
"engines": {
"node": ">=8.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.4",
"@types/node": "^22.0.2",
"@types/request-promise-native": "^1.0.18",
"jest": "^29.6.4",
"prettier": "^3.0.3",
"request-promise-native": "^1.0.8",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"scripts": {
"test": "jest",
"pretest": "npm run lint && npm run build",
"prepare": "npm run build",
"build": "tsc --declaration",
"lint": "prettier --check src __tests__"
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/__tests__/testPlugin"
],
"transform": {
"^.+\\.ts?$": "ts-jest"
}
}
}