-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
60 lines (60 loc) · 1.43 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": "ethsum",
"description": "Simple Ethereum address checksum validation tool",
"version": "0.2.0",
"author": {
"name": "Paul Razvan Berg",
"website": "https://paulrberg.com"
},
"bugs": {
"url": "https://github.com/PaulRBerg/ethsum/issues"
},
"dependencies": {
"bootstrap": "^4.1.2",
"github-fork-ribbon-css": "^0.2.1",
"immutability-helper": "^3.0.2",
"prop-types": "^15.6.2",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-github-corner": "^2.3.0",
"react-icons": "^3.0.5",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"react-scripts": "3.4.1",
"react-spinkit": "^3.0.0",
"sanitize.css": "^11.0.0",
"web3-utils": "^1.0.0-beta.35"
},
"homepage": "https://ethsum.netlify.com",
"keywords": [
"checksum",
"checksum-validator",
"ethereum",
"ethereum-address"
],
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/PaulRBerg/ethsum.git"
},
"scripts": {
"build": "react-scripts build",
"eject": "react-scripts eject",
"lint": "eslint ./src",
"start": "react-scripts start",
"test": "react-scripts test --env=jsdom"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}