-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.28 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
{
"name": "vue-translated",
"version": "0.4.1",
"description": "Internationalization (i18n) and localization (l10n) plugin for Vue.js v2.",
"main": "./dist/index.js",
"scripts": {
"clean": "rm -Rf ./dist",
"build": "npm run clean; vue build src/index.js --prod --lib --config vue.config.js",
"prepublish": "npm run build",
"example": "vue build example/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xpepermint/vue-translated.git"
},
"bugs": {
"url": "https://github.com/xpepermint/vue-translated/issues"
},
"homepage": "https://github.com/xpepermint/vue-translated#readme",
"keywords": [
"i18n",
"l10n",
"g11n",
"cldr",
"icu",
"intl",
"globalize",
"translated",
"translate",
"translation",
"locale",
"localize",
"localized",
"localization",
"international",
"internationalize",
"internationalization",
"lang",
"language",
"parse",
"format",
"plural",
"number",
"date",
"vue",
"vue.js"
],
"author": "Kristijan Sedlak (Xpepermint)",
"license": "MIT",
"peerDependencies": {
"translated": "^0.3.0"
},
"devDependencies": {
"translated": "0.3.0",
"vue": "2.1.10",
"vue-template-compiler": "2.1.10"
}
}