-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
96 lines (96 loc) · 2.9 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
90
91
92
93
94
95
96
{
"name": "@fingerprintjs/fingerprintjs-pro-react-native",
"version": "3.2.0",
"description": "Official React Native client for Fingerprint PRO. Best identification solution for React Native.",
"main": "./dist/fpjs-pro-react-native.cjs.js",
"module": "./dist/fpjs-pro-react-native.esm.js",
"types": "./dist/fpjs-pro-react-native.d.ts",
"scripts": {
"prepare": "husky install",
"build": "rm -rf ./dist && rollup -c rollup.config.mjs",
"lint": "eslint --ext .js,.ts,.jsx,.tsx --ignore-path .gitignore --max-warnings 0 .",
"lint:fix": "yarn lint --fix",
"test": "jest",
"test:coverage": "jest --coverage",
"test:dts": "tsc -p check.tsconfig.json",
"docs": "typedoc src/index.ts --out docs --readme README.md",
"release": "semantic-release"
},
"files": [
"android",
"ios",
"RNFingerprintjsPro.podspec",
"dist"
],
"keywords": [
"fraud",
"fraud detection",
"fraud prevention",
"browser",
"identification",
"fingerprint",
"fingerprinting",
"browser fingerprint",
"device fingerprint",
"privacy"
],
"repository": {
"type": "git",
"url": "git+https://github.com/fingerprintjs/fingerprintjs-pro-react-native.git"
},
"author": "FingerprintJS, Inc (https://fingerprint.com)",
"license": "MIT",
"lint-staged": {
"*.ts": "yarn run lint:fix",
"*.tsx": "yarn run lint:fix",
"*.js": "yarn run lint:fix",
"*.jsx": "yarn run lint:fix"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@fingerprintjs/commit-lint-dx-team": "^0.0.2",
"@fingerprintjs/conventional-changelog-dx-team": "^0.1.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-typescript": "^11.1.6",
"@testing-library/react": "^14.1.2",
"@types/jest": "^29.5.12",
"@types/react": "18.2.0",
"@types/react-native": "0.73.0",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"commitizen": "^4.2.5",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-native": "^4.0.0",
"husky": "^8.0.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^13.0.3",
"metro-react-native-babel-preset": "^0.77.0",
"prettier": "^2.6.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-test-renderer": "18.2.0",
"rollup": "^4.13.1",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-license": "^3.3.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"ts-jest": "^29.1.2",
"tslib": "^2.6.2",
"typedoc": "^0.25.7",
"typescript": "5.0.4"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
}
}