-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.27 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.27 KB
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
{
"name": "@unikbase/react-token-hash",
"version": "1.0.24",
"description": "Common hash library for Unikbase FE web and app",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"!android/build",
"!.DS_Store",
"!.gradle",
"!.idea",
"!build",
"!gradle",
"!*.iml",
"!gradlew",
"!gradlew.bat",
"!local.properties",
"!project.xcworkspace",
"!xcshareddata",
"!xcuserdata"
],
"scripts": {
"build": "rimraf lib && tsc -p .",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"prepare": "yarn build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unikbase/react-token-hash.git"
},
"keywords": [
"hash",
"crypto",
"token"
],
"author": "Manaty",
"license": "ISC",
"bugs": {
"url": "https://github.com/unikbase/react-token-hash/issues"
},
"homepage": "https://github.com/unikbase/react-token-hash",
"dependencies": {
"crypto-js": "^4.1.1",
"ethereum-checksum-address": "^0.0.8",
"json-canonicalize": "^1.0.6",
"multihashes": "^4.0.3"
},
"devDependencies": {
"@types/crypto-js": "^4.1.1",
"@types/ethereum-checksum-address": "^0.0.2",
"rimraf": "^5.0.5"
}
}