-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
63 lines (63 loc) · 1.32 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
{
"name": "react-native-hash",
"title": "React Native Hash",
"version": "3.0.3",
"description": "A hashing library for react-native",
"main": "index.js",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Drazail/react-native-hash.git",
"baseUrl": "https://github.com/Drazail/react-native-hash"
},
"keywords": [
"react",
"react-native",
"react-native-hash",
"hooks",
"custom-hooks",
"react-hooks",
"hash",
"MD2",
"MD5",
"SHA-1",
"SHA-224",
"SHA-256",
"SHA-384",
"SHA-512",
"android",
"keccak",
"hash-algorithm",
"hmac"
],
"author": {
"name": "Drazail",
"email": "[email protected]"
},
"deprecated": false,
"license": "Apache-2.0",
"readmeFilename": "README.md",
"peerDependencies": {
"react": "^18.1.0",
"react-native": "^0.70.1"
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/plugin-transform-modules-commonjs": "^7.18.6",
"babel-jest": "^29.0.1",
"eslint": "^8.21.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"jest": "^29.0.3"
},
"jest": {
"testRegex": "(/__tests__/.*\\.test\\.js)$",
"collectCoverage": true,
"coverageReporters": [
"json",
"html"
]
}
}