-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.08 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
{
"name": "react-translations",
"version": "1.0.0",
"description": "modern gettext-style translations for React",
"main": "dist/built.js",
"scripts": {
"test": "jest",
"test-watch": "jest --watch",
"test-ci": "jest --coverage && codecov",
"build": "webpack --config webpack.config.js",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/rtymchyk/react-translations.git"
},
"keywords": [
"react",
"translations",
"i18n",
"translate",
"gettext",
"icu",
"messageformat"
],
"files": [
"built.js"
],
"author": "Roman Tymchyk <[email protected]> (http://www.romantymchyk.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/rtymchyk/react-translations/issues"
},
"homepage": "https://github.com/rtymchyk/react-translations#readme",
"dependencies": {
"jed": "^1.1.1",
"prop-types": "^15.6.2"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-0",
"babel-eslint": "^9.0.0",
"babel-jest": "^23.4.2",
"babel-loader": "^8.0.2",
"codecov": "^3.0.4",
"enzyme": "^3.5.0",
"enzyme-adapter-react-16": "^1.3.1",
"eslint": "^5.5.0",
"eslint-config-react": "^1.1.7",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-react": "^7.1.0",
"eslint-plugin-standard": "^4.0.0",
"jest": "^23.5.0",
"raf": "^3.4.0",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-test-renderer": "^16.4.2",
"regenerator-runtime": "^0.12.1",
"webpack": "^4.17.1",
"webpack-cli": "^3.1.0"
},
"peerDependencies": {
"react": ">=15.0.0"
},
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>/test/index.js",
"roots": [
"<rootDir>/src/",
"<rootDir>/test/"
],
"moduleDirectories": [
"node_modules",
"./src"
]
}
}