forked from i18next/react-i18next
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.45 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.45 KB
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
{
"name": "react-i18next",
"version": "1.1.0",
"description": "React integration for i18next",
"main": "./lib/index.js",
"keywords": [
"i18next",
"internationalization",
"i18n",
"translation",
"localization",
"l10n",
"globalization",
"react",
"reactjs"
],
"homepage": "https://github.com/i18next/react-i18next",
"bugs": "https://github.com/i18next/react-i18next/issues",
"repository": {
"type": "git",
"url": "https://github.com/i18next/react-i18next.git"
},
"dependencies": {},
"devDependencies": {
"babel-cli": "6.5.1",
"babel-core": "6.5.2",
"babel-eslint": "5.0.0",
"babel-preset-es2015": "6.5.0",
"babel-preset-stage-0": "6.5.0",
"babel-register": "6.5.2",
"babelify": "7.2.0",
"browserify": "13.0.0",
"chai": "3.5.0",
"coveralls": "2.11.6",
"eslint": "2.2.0",
"i18next": "2.2.0",
"isparta": "4.0.0",
"mocha": "2.4.5",
"uglifyify": "3.0.1"
},
"scripts": {
"transpile": "babel src -d lib",
"browserify": "browserify --external react ./src/index.js --outfile ./bin/index.js -g uglifyify -t babelify -s reactI18next",
"copy": "cp ./bin/index.js ./react-i18next.min.js",
"build": "npm run transpile && npm run browserify && npm run copy",
"version": "npm run build",
"postversion": "git push && git push --tags"
},
"author": "Jan Mühlemann <jan.muehlemann@gmail.com> (https://github.com/jamuhl)",
"license": "MIT"
}