forked from webpack-contrib/i18n-webpack-plugin
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
35 lines (35 loc) · 769 Bytes
/
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
{
"name": "i18next-webpack-plugin",
"version": "0.1.2",
"author": "Kamil Głód @kglod",
"description": "Embed localization into your bundle",
"main": "index",
"scripts": {
"test": "mocha && npm run lint",
"test:watch": "mocha --watch",
"lint": "eslint ."
},
"peerDependencies": {
"webpack": ">=0.10 <2"
},
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/mit-license.php"
}
],
"repository": {
"type": "git",
"url": "https://github.com/kamilglod/i18n-webpack-plugin.git"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^2.3.0",
"mocha": "^2.4.5",
"webpack": "^1.12.14"
},
"dependencies": {
"cli-color": "^1.1.0",
"i18next": "^2.3.3"
}
}