forked from stefalda/react-localization
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.12 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
{
"name": "react-localization",
"version": "0.1.3",
"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"
],
"main": "./lib/LocalizedStrings.js",
"types": "./lib/LocalizedStrings.d.ts",
"author": "Stefano Falda <stefano.falda@gmail.com> (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"
},
"dependencies": {
"react": "^16.0.0"
}
}