-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.73 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
{
"name": "vue-i18n-phrase",
"version": "0.6.3",
"description": "Extract all vue-i18n keys from your Vue.js projects. Then, add missing keys to your Phrase account!",
"scripts": {
"build": "rm -fr dist && microbundle -f modern,umd",
"build:function": "rm -fr function/dist && microbundle -f modern,umd -i function/src/index.ts -o function/dist",
"dev": "microbundle watch",
"demo": "node ./bin/vue-i18n-phrase.js",
"demo:function": "node ./function/dist/vue-i18n-phrase.umd.js"
},
"homepage": "https://github.com/Spittal/vue-i18n-phrase",
"repository": "https://github.com/Spittal/vue-i18n-phrase",
"author": "Jamie Spittal <[email protected]>",
"bugs": {
"url": "https://github.com/Spittal/vue-i18n-phrase/issues"
},
"keywords": [
"vue i18n",
"vue",
"vue.js",
"plugin",
"internationalization",
"internationalization plugin",
"phrase",
"phrase app"
],
"license": "MIT",
"source": "src/index.ts",
"bin": "bin/vue-i18n-phrase.js",
"main": "dist/vue-i18n-phrase.umd.js",
"module": "dist/vue-i18n-phrase.modern.js",
"types": "dist/index.d.ts",
"dependencies": {
"axios": "^0.19.2",
"chalk": "^3.0.0",
"commander": "^5.0.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"form-data": "^3.0.0",
"vue-i18n-extract": "^1.1.1"
},
"devDependencies": {
"@types/cors": "^2.8.6",
"@types/express": "^4.17.3",
"@types/form-data": "^2.5.0",
"@types/node": "^13.9.2",
"@typescript-eslint/eslint-plugin": "^2.23.0",
"@typescript-eslint/parser": "^2.23.0",
"@yarnpkg/pnpify": "^2.0.0-rc.19",
"eslint": "^6.8.0",
"jest": "^25.1.0",
"microbundle": "^0.12.0-next.8",
"ts-jest": "^25.2.1",
"typescript": "^3.8.3"
}
}