-
Notifications
You must be signed in to change notification settings - Fork 58
/
package.json
46 lines (46 loc) · 1.3 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-localization",
"version": "1.0.19",
"description": "Simple module to localize the React interface using the same syntax used in the ReactNativeLocalization module, use 'npm run build' before publishing",
"scripts": {
"babel-version": "babel --version",
"test": "jasmine",
"build": "babel src --out-dir lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stefalda/react-localization.git"
},
"keywords": [
"react-component",
"react",
"localization",
"internationalization",
"javascript",
"typescript",
"react",
"react-component"
],
"main": "./lib/LocalizedStrings.js",
"types": "./lib/LocalizedStrings.d.ts",
"author": "Stefano Falda <[email protected]> (http://www.babisoft.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/stefalda/react-localization/issues"
},
"homepage": "https://github.com/stefalda/react-localization#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"jasmine": "^2.7.0",
"react": "^15.6.0"
},
"dependencies": {
"localized-strings": "^0.2.0"
},
"peerDependencies": {
"react": "^18.0.0 || ^17.0.0 || ^16.0.0 || ^15.6.0"
}
}