forked from ryandrewjohnson/react-localize-redux
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
113 lines (113 loc) · 3.42 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
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "react-localize-redux-dep-updated",
"version": "3.5.4",
"description": "Localization library for handling translations in React",
"main": "./lib/index.js",
"module": "./es/index.js",
"jsnext:main": "./es/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"build": "npm run build:commonjs && npm run build:es && npm run copy:flow && npm run build:umd && npm run build:umd:min && npm run copy:ts",
"build:commonjs": "rimraf lib && cross-env BABEL_ENV=commonjs babel ./src -d lib",
"build:es": "rimraf es && cross-env BABEL_ENV=es babel ./src -d es",
"build:umd": "rimraf dist && webpack --env.dev --output-filename dist/ReactLocalizeRedux.js",
"build:umd:min": "webpack --env.prod --output-filename dist/ReactLocalizeRedux.min.js",
"copy:flow": "ncp ./src/index.js.flow ./lib/index.js.flow && ncp ./src/index.js.flow ./es/index.js.flow",
"copy:ts": "ncp ./src/index.d.ts ./lib/index.d.ts && ncp ./src/index.d.ts ./es/index.d.ts",
"coverage": "jest && codecov",
"prepublish": "npm run build",
"test": "cross-env BABEL_ENV=test jest",
"test:dev": "jest --watch",
"flow": "flow",
"types": "flow-typed install -i dev",
"prettier": "prettier --write src/**/*",
"upload:demo": "codesandbox ./demo"
},
"repository": {
"type": "git",
"url": "https://github.com/devPalta/react-localize-redux-2023"
},
"keywords": [
"react",
"redux",
"intl",
"i18n",
"internationalization",
"locale",
"localization",
"globalization"
],
"tags": [
"react",
"redux",
"i18n",
"localization"
],
"author": "Ryan Johnson",
"license": "MIT",
"bugs": {
"url": "https://github.com/ryandrewjohnson/react-localize-redux/issues"
},
"homepage": "https://github.com/ryandrewjohnson/react-localize-redux#readme",
"peerDependencies": {
"react": "^16.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-jest": "^18.0.0",
"babel-loader": "^6.2.10",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"babel-preset-es2015-no-commonjs": "0.0.2",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"codecov": "^3.8.3",
"codesandbox": "^1.3.8",
"cross-env": "^3.1.4",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.7",
"flow-bin": "^0.70.0",
"flow-copy-source": "^1.3.0",
"flow-typed": "^2.6.2",
"immutable": "^3.8.2",
"jest": "^22.4.3",
"json-loader": "^0.5.4",
"ncp": "^2.0.0",
"prettier": "1.12.1",
"progress-bar-webpack-plugin": "^1.12.1",
"raf": "^3.4.1",
"react": "^16.14.0",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.14.0",
"react-test-renderer": "^16.0.0",
"redux": "^3.6.0",
"rimraf": "^2.7.1",
"webpack": "^2.2.0-rc.2",
"webpack-config-utils": "^2.3.1"
},
"jest": {
"verbose": true,
"roots": [
"tests/"
],
"modulePaths": [
"src/",
"node_modules"
],
"setupFiles": [
"raf/polyfill"
],
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"dependencies": {
"create-react-context": "^0.3.0",
"flat": "^5.0.2",
"hoist-non-react-statics": "^3.3.2",
"prop-types": "^15.6.1",
"reselect": "^3.0.1"
}
}