-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
46 lines (46 loc) · 1.03 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
{
"name": "react-multi-lang",
"version": "2.2.0",
"description": "React Multilanguage Higher-Order Component",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"flow": "flow",
"clean": "rimraf lib",
"lint": "tslint src/**/*.*",
"build": "npm run lint && npm run clean && tsc",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git@github.com:JWebCoder/react-multi-lang.git"
},
"keywords": [
"react",
"translations",
"translation",
"i18n"
],
"bugs": {
"url": "https://github.com/JWebCoder/react-multi-lang/issues"
},
"author": "João Moura <joao87moura@gmail.com>",
"license": "MIT",
"peerDependencies": {
"react": "^18.0.25"
},
"devDependencies": {
"@types/hoist-non-react-statics": "^3.3.1",
"@types/react": "^18.0.25",
"react": "^18.0.25",
"rimraf": "^2.6.3",
"tslint": "^6.1.0",
"typescript": "^4.9.3",
"utility-types": "^3.7.0"
},
"dependencies": {
"hoist-non-react-statics": "^3.3.2"
}
}