forked from sealninja/react-i18nify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
157 lines (157 loc) · 3.52 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
{
"name": "react-i18nify",
"version": "1.9.2",
"description": "Simple i18n translation and localization components and helpers for React applications.",
"main": "./build/index.js",
"scripts": {
"test": "jest --colors --env=jsdom",
"test:watch": "npm test -- --watch",
"lint": "esw --ext .js --ext .jsx src --color",
"lint:watch": "npm run lint -- --watch",
"lint:fix": "npm run lint -- --fix",
"clean": "rimraf build",
"build": "npm run lint && babel src -d build",
"prepublish": "npm run clean && npm run build"
},
"babel": {
"presets": [
"react",
"es2015",
"stage-0",
"jest"
]
},
"jest": {
"verbose": true
},
"files": [
"build"
],
"author": "JSxMachina",
"repository": {
"type": "git",
"url": "https://github.com/basilicom/react-i18nify"
},
"license": "ISC",
"keywords": [
"react",
"i18n",
"translation",
"components",
"helpers",
"flux",
"fluxible",
"redux"
],
"runkitExampleFilename": "example/example.js",
"dependencies": {
"prop-types": "^15.5.8",
"react": "^15.4.2"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-eslint": "^7.1.1",
"babel-jest": "^18.0.0",
"babel-polyfill": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"enzyme": "^2.7.1",
"eslint": "^3.15.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"eslint-watch": "^2.1.14",
"jest": "^18.1.0",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15.4.2",
"react-test-renderer": "^15.4.2",
"rimraf": "^2.5.4"
},
"eslintConfig": {
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true,
"impliedStrict": true
}
},
"env": {
"browser": true,
"es6": true
},
"globals": {
"moment": false,
"intl": false,
"global": false
},
"plugins": [
"react"
],
"extends": "airbnb",
"rules": {
"no-underscore-dangle": "off",
"react/no-danger": "off",
"react/forbid-prop-types": "off"
}
},
"contributors": [
{
"name": null,
"email": null,
"url": "https://github.com/livnatge",
"contributions": 4,
"additions": 39,
"deletions": 22,
"hireable": null
},
{
"name": "Nico",
"email": null,
"url": "https://github.com/Freezystem",
"contributions": 3,
"additions": 95,
"deletions": 478,
"hireable": true
},
{
"name": "Gerben Meyer",
"email": null,
"url": "https://github.com/gerbenmeyer",
"contributions": 61,
"additions": 1283,
"deletions": 620,
"hireable": null
},
{
"name": "Michael Ferron",
"email": null,
"url": "https://github.com/iamferron",
"contributions": 1,
"additions": 20,
"deletions": 3,
"hireable": null
},
{
"name": "Mikael Roos",
"email": null,
"url": "https://github.com/livedo",
"contributions": 3,
"additions": 59,
"deletions": 32,
"hireable": null
},
{
"name": "Mohamed Ben Mohamed",
"email": "mbmbrk@gmail.com",
"url": "https://github.com/tikider",
"contributions": 8,
"additions": 296,
"deletions": 55,
"hireable": null
}
]
}