forked from Tankenstein/retranslate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.44 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
{
"name": "retranslate",
"description": "Real simple translations for react.",
"main": "build/retranslate.js",
"version": "0.1.2",
"license": "MIT",
"bugs": {
"url": "https://github.com/tankenstein/retranslate/issues",
"email": "[email protected]"
},
"keywords": [
"react",
"i18n",
"localization",
"translate",
"translation"
],
"repository": {
"type": "git",
"url": "git://github.com/tankenstein/retranslate.git"
},
"author": "Uku Markus Tammet <[email protected]>",
"devDependencies": {
"babel-core": "6.17.0",
"babel-eslint": "7.1.1",
"babel-jest": "17.0.2",
"babel-loader": "6.2.7",
"babel-plugin-transform-react-remove-prop-types": "^0.2.11",
"babel-preset-react-app": "^2.0.1",
"case-sensitive-paths-webpack-plugin": "1.1.4",
"chalk": "1.1.3",
"coveralls": "^2.11.15",
"dotenv": "2.0.0",
"enzyme": "^2.7.0",
"eslint": "3.9.1",
"eslint-config-airbnb": "^13.0.0",
"eslint-loader": "1.6.0",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "2.2.3",
"eslint-plugin-react": "6.6.0",
"filesize": "3.3.0",
"fs-extra": "0.30.0",
"gzip-size": "3.0.0",
"jest": "17.0.2",
"json-loader": "0.5.4",
"path-exists": "2.1.0",
"publish": "^0.6.0",
"react": "^15.4.2",
"react-addons-test-utils": "^15.4.2",
"react-dev-utils": "^0.4.2",
"react-dom": "^15.4.2",
"recursive-readdir": "2.1.0",
"strip-ansi": "3.0.1",
"webpack": "1.14.0",
"webpack-manifest-plugin": "1.1.0"
},
"peerDependencies": {
"react": "^15.4.2",
"react-dom": "^15.4.2"
},
"scripts": {
"build": "node scripts/build.js",
"test": "node scripts/test.js --env=jsdom",
"coverage": "node scripts/test.js --env=jsdom --coverage"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx}"
],
"testPathIgnorePatterns": [
"<rootDir>[/\\\\](build|docs|node_modules)[/\\\\]"
],
"testEnvironment": "node",
"testURL": "http://localhost",
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest"
},
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$"
]
},
"babel": {
"presets": [
"react-app"
],
"plugins": [
"transform-react-remove-prop-types"
]
},
"eslintConfig": {
"extends": "airbnb",
"rules": {
"react/jsx-filename-extension": 0,
"import/prefer-default-export": 0
}
}
}