forked from fingerprintjs/fingerprintjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 3.08 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
82
83
84
85
86
87
88
89
{
"name": "@fingerprintjs/fingerprintjs",
"description": "Browser fingerprinting library with the highest accuracy and stability",
"version": "3.3.6",
"keywords": [
"fraud",
"fraud detection",
"fraud prevention",
"browser",
"identification",
"fingerprint",
"fingerprinting",
"browser fingerprint",
"device fingerprint",
"privacy"
],
"author": "FingerprintJS, Inc (https://fingerprint.com)",
"license": "MIT",
"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",
"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.0.1"
},
"devDependencies": {
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.1",
"@types/jasmine": "^3.5.14",
"@types/terser-webpack-plugin": "^4.2.2",
"@types/ua-parser-js": "^0.7.35",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
"clean-webpack-plugin": "^3.0.0",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.13.0",
"eslint-plugin-prettier": "^3.1.4",
"file-loader": "^6.2.0",
"got": "^11.8.2",
"html-webpack-plugin": "^4.5.2",
"karma": "^6.3.2",
"karma-browserstack-launcher": "^1.6.0",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^2.1.0",
"karma-jasmine": "^4.0.1",
"karma-spec-reporter": "^0.0.34",
"karma-summary-reporter": "^2.0.2",
"karma-typescript": "^5.5.1",
"prettier": "^2.1.2",
"promise-polyfill": "^8.2.0",
"rimraf": "^3.0.2",
"rollup": "^2.52.0",
"rollup-plugin-dts": "^1.4.13",
"rollup-plugin-license": "^2.8.0",
"rollup-plugin-terser": "^7.0.2",
"terser-webpack-plugin": "^4.2.3",
"ts-loader": "^8.0.7",
"ts-node": "^9.1.1",
"typescript": "^4.0.3",
"ua-parser-js": "^0.7.24",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.3"
}
}