forked from fingerprintjs/fingerprintjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.84 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@fingerprintjs/fingerprintjs",
"description": "Browser fingerprinting library with the highest accuracy and stability",
"version": "4.1.0",
"keywords": [
"fraud",
"fraud detection",
"fraud prevention",
"browser",
"identification",
"fingerprint",
"fingerprinting",
"browser fingerprint",
"device fingerprint",
"privacy"
],
"author": "FingerprintJS, Inc (https://fingerprint.com)",
"license": "BUSL-1.1",
"repository": {
"type": "git",
"url": "https://github.com/fingerprintjs/fingerprintjs.git"
},
"bugs": {
"url": "https://github.com/fingerprintjs/fingerprintjs/issues"
},
"homepage": "https://github.com/fingerprintjs/fingerprintjs",
"main": "dist/fp.cjs.js",
"module": "dist/fp.esm.js",
"types": "dist/fp.d.ts",
"sideEffects": false,
"files": [
"dist"
],
"scripts": {
"build": "rimraf dist && rollup -c rollup.config.ts --configPlugin '@rollup/plugin-typescript={tsconfig:`tsconfig.rollupConfig.json`}'",
"build:watch": "yarn build --watch",
"playground:start": "cd playground && webpack-dev-server --mode development",
"playground:build": "cd playground && webpack --mode production",
"lint": "eslint --ext .js,.ts --ignore-path .gitignore --max-warnings 0 .",
"lint:fix": "yarn lint --fix",
"test:local": "karma start --preset local --single-run",
"test:browserstack": "karma start --preset browserstack --single-run",
"test:browserstack:beta": "karma start --preset browserstack-beta --single-run",
"check:dts": "tsc --isolatedModules --noEmit dist/fp.d.ts",
"check:ssr": "node --require './dist/fp.cjs.js' --eval '' || (echo \"The distributive files can't be used with server side rendering. Make sure the code doesn't use browser API until an exported function is called.\" && exit 1)"
},
"dependencies": {
"tslib": "^2.4.1"
},
"devDependencies": {
"@fpjs-incubator/broyster": "^0.1.7",
"@rollup/plugin-json": "^5.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.2.1",
"@rollup/plugin-typescript": "^10.0.1",
"@types/jasmine": "^3.10.3",
"@types/ua-parser-js": "^0.7.36",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"file-loader": "^6.2.0",
"got": "^11.8.5",
"html-webpack-plugin": "^5.5.0",
"karma": "^6.4.1",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"rollup": "^3.25.0",
"rollup-plugin-dts": "^5.3.1",
"rollup-plugin-license": "^3.0.1",
"terser-webpack-plugin": "^5.3.6",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "^5.1.6",
"ua-parser-js": "^0.7.32",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
}
}