forked from mikamai/rails-translations-webpack-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.03 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
{
"name": "rails-translations-webpack-plugin",
"version": "1.2.0",
"author": "Nicola Racco",
"description": "Shares Rails i18n translations with your javascripts without duplicating contents",
"engines": {
"node": ">= 4.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mikamai/rails-translations-webpack-plugin.git"
},
"keywords": [
"webpack",
"plugin",
"rails",
"i18n"
],
"bugs": {
"url": "https://github.com/mikamai/rails-translations-webpack-plugin/issues"
},
"homepage": "https://github.com/mikamai/rails-translations-webpack-plugin#readme",
"license": "MIT",
"scripts": {
"lint": "eslint . ./lib/",
"test": "mocha test --recursive",
"watch-test": "mocha test --recursive --watch"
},
"main": "lib/index.js",
"dependencies": {
"glob": "^7.1.1",
"lodash": "^4.17.4",
"virtual-module-webpack-plugin": "^0.4.1",
"yaml-js": "^0.1.4"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.16.0",
"mocha": "^3.2.0"
}
}