This repository has been archived by the owner on May 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.62 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": "caesar-cipher",
"version": "1.0.0",
"private": true,
"dependencies": {
"@material-ui/core": "^4.5.1",
"flow-bin": "^0.109.0",
"flow-typed": "^2.6.1",
"gh-pages": "^2.1.1",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"react-scripts": "3.4.1"
},
"scripts": {
"predeploy": "yarn run build",
"deploy": "gh-pages -d build",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"flow": "flow",
"preversion": "yarn test --watchAll=false",
"postversion": "git push --tags && yarn deploy && git push && echo \"Successfully deployed version $npm_package_version!\""
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"description": "This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).",
"main": "index.js",
"devDependencies": {
"react-test-renderer": "^16.13.1"
},
"keywords": [
"caesar",
"cipher",
"encryption",
"material-ui",
"react",
"react-hooks"
],
"author": "Luiz Lopes <[email protected]>",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/theprivileges/caesar-cipher.git"
},
"bugs": {
"url": "https://github.com/theprivileges/caesar-cipher/issues"
},
"homepage": "https://theprivileges.github.io/caesar-cipher"
}