forked from kazupon/vue-i18n
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 3.74 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
{
"name": "vue-i18n",
"description": "Internationalization plugin for Vue.js",
"version": "4.3.1",
"author": {
"name": "kazuya kawaguchi",
"email": "kawakazu80@gmail.com"
},
"bugs": {
"url": "https://github.com/kazupon/vue-i18n/issues"
},
"devDependencies": {
"babel-core": "^6.7.4",
"babel-loader": "^6.2.4",
"babel-plugin-espower": "^2.1.2",
"babel-plugin-transform-es2015-modules-commonjs": "^6.7.4",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-es2015-rollup": "^1.1.1",
"conventional-changelog-cli": "^1.1.1",
"conventional-github-releaser": "^1.1.3",
"eslint": "^2.10.0",
"eslint-config-vue": "^1.0.0",
"eslint-loader": "^1.3.0",
"git-commit-message-convention": "git://github.com/kazupon/git-commit-message-convention.git",
"gitbook-cli": "^2.3.0",
"istanbul-instrumenter-loader": "^0.2.0",
"json-loader": "^0.5.4",
"karma": "^0.13.22",
"karma-chrome-launcher": "^0.2.3",
"karma-coverage": "^0.5.5",
"karma-coveralls": "^1.1.2",
"karma-firefox-launcher": "^0.1.6",
"karma-mocha": "^0.2.2",
"karma-mocha-reporter": "^2.0.0",
"karma-phantomjs-launcher": "^0.2.1",
"karma-safari-launcher": "^0.1.1",
"karma-sauce-launcher": "^0.3.1",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"mocha": "^2.4.5",
"mocha-generators": "^1.2.0",
"mocha-loader": "^0.7.1",
"nightmare": "^2.2.0",
"phantomjs": "^2.1.3",
"power-assert": "^1.3.1",
"rollup": "^0.25.6",
"rollup-plugin-babel": "^2.4.0",
"rollup-plugin-replace": "^1.1.0",
"uglify-js": "^2.6.1",
"vue": "^1.0.0",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1"
},
"files": [
"dist/vue-i18n.js",
"dist/vue-i18n.min.js",
"dist/vue-i18n.common.js",
"src"
],
"homepage": "https://github.com/kazupon/vue-i18n",
"jsnext:main": "src/index.js",
"keywords": [
"i18n",
"internationalization",
"plugin",
"vue",
"vue.js"
],
"license": "MIT",
"main": "dist/vue-i18n.common.js",
"repository": {
"type": "git",
"url": "git+https://github.com/kazupon/vue-i18n.git"
},
"scripts": {
"browser": "VUE_I18N_TYPE=browser karma start config/karma.conf.js",
"build": "node config/build.js && npm run docs:build",
"changelog": "conventional-changelog -i CHANGELOG.md -s -n ./node_modules/git-commit-message-convention/convention.js",
"ci": "npm run lint && npm run coverage && npm run coveralls && npm run sauce",
"clean": "rm -rf coverage && rm -rf dist/*.*",
"coolkids": "VUE_I18N_TYPE=sauce SAUCE=batch1 karma start config/karma.conf.js",
"coverage": "VUE_I18N_TYPE=coverage karma start config/karma.conf.js",
"coveralls": "VUE_I18N_TYPE=coveralls karma start config/karma.conf.js",
"dev": "webpack-dev-server --quiet --config config/webpack.test.conf.js",
"docs": "gitbook serve ./gitbook ./docs",
"docs:build": "gitbook build ./gitbook ./docs",
"docs:install": "gitbook install ./gitbook",
"e2e": "webpack-dev-server --quiet --config config/webpack.e2e.conf.js & mocha --opts test/e2e/mocha.opts --harmony test/e2e/test.js && kill $! || (kill $! && exit 1)",
"ie": "VUE_I18N_TYPE=sauce SAUCE=batch2 karma start config/karma.conf.js",
"lint": "eslint src/*.js test/**/*.js config/*.js",
"mobile": "VUE_I18N_TYPE=sauce SAUCE=batch3 karma start config/karma.conf.js",
"proto": "webpack-dev-server --quite --config config/webpack.dev.conf.js --host 0.0.0.0",
"release": "conventional-github-releaser -n ./node_modules/git-commit-message-convention/convention.js",
"sauce": "npm run coolkids && npm run ie && npm run mobile",
"test": "npm run ci",
"unit": "npm run lint && karma start config/karma.conf.js"
}
}