forked from Tiqa/redux-polyglot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 2.92 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 2.92 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
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "@cabify/redux-polyglot",
"version": "0.9.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",
"format:check": "echo 'Skipping for now'",
"lint": "eslint --max-warnings 0 src",
"prebuild": "yarn clean",
"prepublishOnly": "node scripts/prepublish.js",
"publish:canary": "npm version prerelease --preid=beta",
"publish:major": "npm version major",
"publish:minor": "npm version minor",
"publish:patch": "npm version patch",
"test:ci": "yarn test",
"test": "jest --coverage",
"typecheck": "echo 'Skipping for now'"
},
"repository": {
"type": "git",
"url": "https://github.com/Tiqa/redux-polyglot.git"
},
"types": "./dist/types.d.ts",
"keywords": [
"polyglot",
"redux",
"react",
"i18n",
"reselect",
"component enhancer",
"translation"
],
"maintainers": [
{
"name": "Guillaume Arm",
"email": "garm@student.42.fr"
},
{
"name": "Jalil Arfaoui",
"email": "jalil@arfaoui.net"
},
{
"name": "Jérémy Vincent",
"email": "jvincent@student.42.fr"
}
],
"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/"
],
"testURL": "http://localhost"
},
"dependencies": {
"lodash.assign": "^4.2.0",
"lodash.curry": "^4.1.1",
"node-polyglot": "^2.3.0",
"redux": "^4.0.0",
"reselect": "^4.0.0"
},
"devDependencies": {
"@types/node-polyglot": "^0.4.31",
"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",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.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.7.2",
"ramda": "^0.25.0",
"react": "16.10.1",
"react-dom": "^16.10.1",
"react-redux": "^7.1.1",
"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": {
"prop-types": "^15.7.2",
"react": ">= 16.8.0",
"react-redux": ">= 7.0.0"
},
"volta": {
"node": "18.14.2",
"yarn": "1.22.19"
}
}