forked from jenseng/react-i18nliner
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 1.81 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
{
"name": "preact-i18nline",
"version": "2.0.0",
"description": "Keep your translations in line - with Preact!",
"main": "main.js",
"scripts": {
"test": "eslint . && mocha --require babel-core/register \"./{,!(node_modules)/**}/*.test.js\"",
"dist": "babel -d dist ComponentInterpolator.js extensions/i18n_js.js"
},
"author": "Stijn de Witt & Jon Jensen",
"contributors": [
{
"name": "Stijn de Witt",
"email": "[email protected]",
"website": "https://StijnDeWitt.com"
},
{
"name": "Jon Jensen",
"email": "[email protected]",
"website": "https://github.com/jenseng"
}
],
"keywords": [
"preact",
"i18n",
"i18nline"
],
"copyright": "Copyright 2016 by [Stijn de Witt](http://StijnDeWitt.com) and [Jon Jensen](https://github.com/jenseng).",
"license": "MIT",
"licenseUrl": "https://github.com/download/preact-i18nline/LICENSE",
"repository": {
"type": "git",
"url": "https://github.com/download/preact-i18nline.git"
},
"bugs": {
"url": "https://github.com/download/preact-i18nline/issues"
},
"homepage": "http://github.com/download/preact-i18nline",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"chai": "^4.1.2",
"eslint": "^4.19.1",
"eslint-plugin-react": "^7.7.0",
"mocha": "^5.0.5",
"preact-render-to-string": "^3.7.0"
},
"peerDependencies": {
"i18nline": "^2.0.0",
"preact": "^7.0.0 || ^8.0.0"
},
"dependencies": {
"chalk": "^2.3.2",
"esprima": "^4.0.0",
"extend": "^3.0.1",
"i18nline": "^2.0.1",
"invariant": "^2.2.4",
"preact": "^8.2.7",
"recast": "^0.14.7",
"through2": "^2.0.3",
"ulog": "^1.1.0"
}
}