-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathpackage.json
86 lines (86 loc) · 2.1 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "redux-i18n",
"version": "1.5.26",
"description": "A simple and powerful package for translate your react applications.",
"main": "./dist/index.js",
"typings": "./index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/APSL/redux-i18n"
},
"scripts": {
"build": "babel src --out-dir dist",
"lint": "eslint src",
"test": "cross-env NODE_ENV=test mocha --compilers js:babel-core/register --recursive && npm run lint"
},
"files": [
"bin",
"*.md",
"dist",
"index.d.ts",
"immutable.js"
],
"keywords": [
"react",
"reactjs",
"flux",
"redux",
"i18n",
"gettext",
"translations",
"poedit",
"po",
"internationalize"
],
"author": "Apsl <[email protected]> (https://www.apsl.net)",
"license": "MIT",
"homepage": "https://github.com/APSL/redux-i18n",
"bin": {
"i18n_extract": "./bin/i18n_extract.js",
"i18n_import": "./bin/i18n_import.js"
},
"dependencies": {
"colors": "^1.1.2",
"escape-quotes": "^1.0.2",
"gettext-parser": "^1.1.2",
"glob": "^7.0.5",
"hoist-non-react-statics": "^2.2.0",
"invariant": "^2.2.2",
"minimist": "^1.2.7",
"prop-types": "^15.5.8",
"react-is": "^16.8.6"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.7.7",
"babel-eslint": "^6.0.5",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-1": "^6.5.0",
"cross-env": "^5.0.5",
"eslint": "^2.13.1",
"eslint-plugin-react": "^5.2.2",
"expect": "^1.20.1",
"gettext-parser": "^1.1.2",
"immutable": "^3.8.1",
"jsdom-no-contextify": "^3.1.0",
"mocha": "^2.5.3",
"moment": "~2.19.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-redux": "^4.4.5",
"redux": "^3.5.2",
"redux-immutablejs": "0.0.8",
"redux-promise-middleware": "^3.0.0",
"redux-thunk": "^2.3.0",
"webpack": "^1.13.0"
},
"prettier": {
"singleQuote": true,
"trailingComma": "none",
"semi": false,
"printWidth": 120,
"bracketSameLine": true
}
}