-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
51 lines (51 loc) · 1.12 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
{
"name": "elm-i18n",
"version": "1.0.2",
"description": "Generate localized versions of your elm-app, import and export strings (PO/CSV)",
"keywords": [
"elm",
"translate",
"i18n",
"internationalization",
"internationalisation",
"translation",
"tool"
],
"main": "index.js",
"dependencies": {
"elm-test": "^0.18.7",
"fs-extra": "^2.1.2",
"glob": "^7.1.1",
"prompt": "^1.0.0",
"symlink-or-copy": "^1.1.8",
"yargs": "^7.0.2"
},
"devDependencies": {
"eslint-config-google": "^0.7.1",
"eslint": "^3.16.1"
},
"repository": {
"type": "git",
"url": "https://github.com/iosphere/elm-i18n.git"
},
"scripts": {
"preversion": "make test && make lint-js",
"version": "make dist && git add -A dist",
"postversion": "git push && git push --tags"
},
"author": {
"name": "iosphere GmbH",
"url": "https://iosphere.de"
},
"contributors": [
{
"name": "Felix Lamouroux",
"url": "https://github.com/felixLam"
}
],
"license": "MIT",
"bin": {
"elm-i18n-generator": "extractor.js",
"elm-i18n-switch": "index.js"
}
}