-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.06 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
{
"name": "@cospired/react-intl-redux",
"version": "0.1.0",
"description": "react-intl redux wrapper with dynamically loading translation files",
"main": "src/index.js",
"module": "./lib/index.js",
"scripts": {
"build": "babel src --out-dir lib",
"prepublishOnly": "npm run build",
"lint": "eslint --format 'node_modules/eslint-friendly-formatter' src/",
"lint:cli": "eslint --format node_modules/eslint-friendly-formatter",
"lint:autofix": "eslint --fix --format node_modules/eslint-friendly-formatter src/",
"lint:styles": "stylelint **/*.?css",
"lint:watch": "esw -w src",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cospired/react-intl-redux.git"
},
"keywords": [
"react",
"redux",
"react-intl",
"i18n",
"l10n",
"messageformat"
],
"author": "Dirk Haage <[email protected]>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/cospired/react-intl-redux/issues"
},
"homepage": "https://github.com/cospired/react-intl-redux#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-object-values-to-object-keys": "^1.0.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"eslint": "^4.9.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-friendly-formatter": "^3.0.0",
"eslint-import-resolver-webpack": "^0.8.3",
"eslint-loader": "^1.9.0",
"eslint-plugin-hapi": "^4.0.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"eslint-watch": "^3.1.3",
"exenv": "^1.2.2",
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-intl": "^2.4.0",
"react-redux": "^5.0.6",
"redux": "^3.7.2"
},
"peerDependencies": {
"exenv": "^1.2.2",
"prop-types": "^15.5.0",
"react": "^15.0.0-0 || ^16.0.0-0",
"react-intl": "^2.3.0",
"react-redux": "^5.0.0",
"redux": "^3.0.0"
},
"dependencies": {}
}