forked from thumbmarkjs/thumbmarkjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.56 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
59
{
"name": "@thumbmarkjs/thumbmarkjs",
"version": "0.14.7",
"description": "",
"main": "./dist/thumbmark.cjs.js",
"module": "./dist/thumbmark.esm.js",
"types": "./dist/thumbmark.esm.d.ts",
"exports": {
".": {
"import": "./dist/thumbmark.esm.js",
"require": "./dist/thumbmark.cjs.js"
}
},
"public": true,
"files": [
"dist"
],
"scripts": {
"test": "jest",
"build": "rm -rf dist/* && rm -rf types/* && rollup -c"
},
"keywords": [
"fingerprint",
"fingerprinting",
"browser-fingerprint",
"browser-fingerprinting",
"audio-fingerprinting",
"canvas-fingerprinting",
"visitor-identifier",
"fraud-detection"
],
"author": "Ilkka Peltola",
"license": "MIT",
"unpkg": "dist/thumbmark.umd.js",
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@testing-library/jest-dom": "^6.1.6",
"@types/jest": "^29.5.11",
"@types/jsdom": "^21.1.6",
"@types/node": "^20.10.6",
"@types/ua-parser-js": "^0.7.39",
"@types/webpack-env": "^1.18.4",
"@webpack-cli/generators": "^3.0.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "^23.0.1",
"path": "^0.12.7",
"rollup": "^4.12.0",
"rollup-plugin-dts": "^6.1.0",
"ts-jest": "^29.1.1",
"ts-loader": "^9.5.1",
"ts-md5": "^1.3.1",
"typescript": "^5.3.3"
}
}