-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
60 lines (60 loc) · 1.18 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
{
"name": "react-hash",
"title": "React Hash",
"description": "A hashing library for react",
"version": "0.1.1",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/Drazail/react-hash.git",
"baseUrl": "https://github.com/Drazail/react-hash"
},
"keywords": [
"react",
"react-hash",
"hash",
"MD2",
"MD5",
"SHA-1",
"SHA-224",
"SHA-256",
"SHA-384",
"SHA-512",
"android",
"keccak",
"hash-algorithm",
"hmac"
],
"author": {
"name": "Drazail",
"email": "drliazard@gmail.com"
},
"deprecated": false,
"license": "Apache-2.0",
"peerDependencies": {
"react": "^18.2.0"
},
"scripts": {
"test": "jest"
},
"jest": {
"testEnvironment": "jsdom",
"testPathIgnorePatterns": [
"__tests__/C",
"example"
]
},
"eslintConfig": {
"extends": []
},
"devDependencies": {
"@babel/preset-env": "^7.18.6",
"@babel/preset-react": "^7.18.6",
"@testing-library/react": "^13.3.0",
"babel-jest": "^29.0.3",
"jest": "^29.0.3",
"jest-environment-jsdom": "^29.0.1",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0"
}
}