forked from panter/vue-i18next
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 3.81 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "@panter/vue-i18next",
"description": "i18next wrapper for vue",
"version": "0.4.0-development",
"author": "Claudio Romano <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/panter/vue-i18next.git"
},
"homepage": "https://github.com/panter/vue-i18next#readme",
"bugs": "https://github.com/panter/vue-i18next/issues",
"keywords": [
"i18n",
"i18next",
"internationalization",
"plugin",
"vue",
"vue.js"
],
"scripts": {
"roll": "rollup",
"prepublish": "npm run build",
"dev": "cross-env NODE_ENV=development webpack-dev-server --open --hot",
"build": "cross-env NODE_ENV=production rollup -c rollup.config.js",
"lint": "eslint src/**.js",
"test": "npm run lint && npm run test:unit && npm run test:types",
"test:unit": "cross-env BABEL_ENV=test karma start test/karma.conf.js",
"gh-pages": "npm run build && rimraf ./gh-pages && mkdirp ./gh-pages/examples mkdirp ./gh-pages/dist && ncp ./examples ./gh-pages/examples && ncp ./dist ./gh-pages/dist",
"gh-pages-publish": "gh-pages -d gh-pages",
"semantic-release": "semantic-release",
"coveralls": "cat ./test/coverage/lcov.info | coveralls",
"test:types": "tsc -p typings",
"docs:dev": "vuepress dev docs --temp .temp",
"docs:build": "vuepress build docs --temp .temp"
},
"main": "./dist/vue-i18next.common.js",
"module": "./dist/vue-i18next.esm.js",
"unpkg": "./dist/vue-i18next.js",
"types": "typings/index.d.ts",
"peerDependencies": {
"i18next": ">= 6.0.1",
"vue": ">=2.0.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"@babel/preset-stage-2": "^7.0.0",
"@types/i18next": "^8.4.3",
"@vuepress/plugin-pwa": "^1.0.1",
"@vuepress/theme-vue": "^1.0.1",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"babel-plugin-add-module-exports": "^1.0.0",
"babel-plugin-istanbul": "^5.1.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"chai": "^3.5.0",
"coveralls": "^3.0.4",
"cross-env": "^3.0.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.13.0",
"gh-pages": "^1.0.0",
"i18next": "^6.0.1",
"jasmine": "^2.5.3",
"jasmine-core": "^2.5.2",
"karma": "^4.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-coverage-istanbul-reporter": "^2.0.5",
"karma-firefox-launcher": "^1.1.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-phantomjs-launcher": "^1.0.4",
"karma-phantomjs-shim": "^1.5.0",
"karma-safari-launcher": "^1.0.0",
"karma-sauce-launcher": "^2.0.2",
"karma-sinon-chai": "^2.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^4.0.2",
"mkdirp": "^0.5.1",
"mocha": "^6.1.4",
"mocha-lcov-reporter": "^1.3.0",
"mocha-loader": "^2.0.1",
"ncp": "^2.0.0",
"phantomjs-prebuilt": "^2.1.14",
"rimraf": "^2.6.1",
"rollup": "^0.66.0",
"rollup-plugin-buble": "^0.19.2",
"rollup-plugin-commonjs": "^9.1.8",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-replace": "^2.0.0",
"semantic-release": "^15.13.12",
"sinon": "^2.1.0",
"sinon-chai": "^2.8.0",
"typescript": "^2.8.3",
"vue": "^2.5.16",
"vue-class-component": "^7.1.0",
"vue-template-compiler": "^2.5.16",
"vuepress": "^1.0.1",
"webpack": "^4.33.0",
"webpack-cli": "^3.3.4",
"webpack-dev-server": "^3.7.1"
},
"dependencies": {
"deepmerge": "^2.0.0"
}
}