forked from cyon/vue-translation-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.05 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
{
"name": "vue-translation-manager",
"version": "1.2.0",
"description": "Translate strings in your app in an interactive way",
"main": "index.js",
"bin": {
"vue-translation-manager": "./bin.js"
},
"scripts": {
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"docs:deploy": "./deploy.sh",
"test": "standard && tape test/test-*.js | tap-spec"
},
"repository": {
"type": "git",
"url": "https://github.com/cyon/vue-translation-manager"
},
"keywords": [
"i18n",
"vue",
"translation",
"translating",
"sfc"
],
"author": "Max Gfeller <[email protected]>",
"license": "ISC",
"devDependencies": {
"standard": "^11.0.1",
"tap-spec": "^5.0.0",
"tape": "^4.9.1",
"vuepress": "^0.14.2"
},
"dependencies": {
"chalk": "^2.4.1",
"execall": "^1.0.0",
"glob": "^7.1.2",
"inquirer": "^6.0.0",
"lodash.get": "^4.4.2",
"lodash.set": "^4.3.2",
"lodash.uniq": "^4.5.0",
"lodash.unset": "^4.5.2",
"replace-string": "^1.1.0",
"yargs": "^12.0.1"
}
}