-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
100 lines (100 loc) · 2.48 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "redux-polyglot",
"version": "0.7.0",
"description": "Tool for using Polyglot.js with Redux",
"main": "./dist/index.js",
"scripts": {
"build": "babel src --out-dir dist --ignore '*.spec.js'",
"clean": "rimraf ./dist",
"test": "jest --coverage",
"test:all": "npm run -s prepublishOnly",
"test:watch": "jest --watch --coverage",
"tw": "npm run test:watch",
"prepublishOnly": "node scripts/prepublish.js",
"postpublish": "echo --- PUBLISHED ---",
"lint": "eslint --max-warnings 0 src"
},
"repository": {
"type": "git",
"url": "https://github.com/Tiqa/redux-polyglot.git"
},
"keywords": [
"polyglot",
"redux",
"react",
"i18n",
"reselect",
"component enhancer",
"translation"
],
"maintainers": [
{
"name": "Guillaume Arm",
"email": "[email protected]"
},
{
"name": "Jalil Arfaoui",
"email": "[email protected]"
},
{
"name": "Jérémy Vincent",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Tiqa/redux-polyglot/issues"
},
"homepage": "https://github.com/Tiqa/redux-polyglot",
"jest": {
"setupTestFrameworkScriptFile": "./src/private/test/boot.js",
"moduleFileExtensions": [
"js",
"jsx"
],
"roots": [
"src"
],
"coveragePathIgnorePatterns": [
"src/private/test/"
]
},
"dependencies": {
"lodash.assign": "^4.2.0",
"lodash.curry": "^4.1.1",
"node-polyglot": "^2.2.2",
"redux": "^4.0.0",
"reselect": "^3.0.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-jest": "^22.4.3",
"babel-plugin-transform-es2015-modules-umd": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.26.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"jest": "^22.4.3",
"prop-types": "^15.6.1",
"ramda": "^0.25.0",
"react": "16.3.2",
"react-redux": "^5.0.7",
"react-test-renderer": "^16.3.2",
"redux-mock-store": "^1.5.1",
"rimraf": "^2.6.2",
"shelljs": "^0.8.1",
"webpack": "^4.6.0"
},
"peerDependencies": {
"react": "^16.3.2",
"react-redux": "^5.0.7",
"prop-types": "^15.6.1"
}
}