115 lines
3.9 KiB
JSON
115 lines
3.9 KiB
JSON
{
|
|
"name": "vue-i18n",
|
|
"description": "Internationalization plugin for Vue.js",
|
|
"version": "7.3.2",
|
|
"author": {
|
|
"name": "kazuya kawaguchi",
|
|
"email": "kawakazu80@gmail.com"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/kazupon/vue-i18n/issues"
|
|
},
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"babel-core": "^6.22.1",
|
|
"babel-eslint": "^7.1.0",
|
|
"babel-loader": "^6.2.10",
|
|
"babel-plugin-istanbul": "^3.1.2",
|
|
"babel-polyfill": "6.22.0",
|
|
"babel-preset-es2015": "^6.22.0",
|
|
"babel-preset-flow-vue": "^1.0.0",
|
|
"babel-preset-power-assert": "^1.0.0",
|
|
"buble": "^0.14.0",
|
|
"chromedriver": "^2.27.2",
|
|
"conventional-changelog-cli": "^1.2.0",
|
|
"conventional-github-releaser": "^1.1.3",
|
|
"cross-spawn": "^5.0.1",
|
|
"dtslint": "^0.1.2",
|
|
"eslint": "^3.14.1",
|
|
"eslint-loader": "^1.6.1",
|
|
"eslint-plugin-flowtype": "^2.30.0",
|
|
"eslint-plugin-vue-libs": "^1.2.0",
|
|
"flow-bin": "^0.38.0",
|
|
"git-commit-message-convention": "git://github.com/kazupon/git-commit-message-convention.git",
|
|
"gitbook-cli": "^2.3.0",
|
|
"html-webpack-plugin": "^2.19.0",
|
|
"http-server": "^0.9.0",
|
|
"intl": "^1.2.5",
|
|
"jasmine": "^2.5.3",
|
|
"jasmine-core": "^2.5.2",
|
|
"karma": "^1.4.1",
|
|
"karma-chrome-launcher": "^2.2.0",
|
|
"karma-coverage": "^1.1.1",
|
|
"karma-firefox-launcher": "^1.0.0",
|
|
"karma-mocha": "^1.3.0",
|
|
"karma-mocha-reporter": "^2.2.2",
|
|
"karma-safari-launcher": "^1.0.0",
|
|
"karma-sauce-launcher": "^1.1.0",
|
|
"karma-sourcemap-loader": "^0.3.7",
|
|
"karma-webpack": "^2.0.2",
|
|
"mocha": "^3.2.0",
|
|
"mocha-loader": "^1.1.1",
|
|
"nightwatch": "^0.9.12",
|
|
"nightwatch-helpers": "^1.2.0",
|
|
"power-assert": "^1.4.2",
|
|
"rollup": "^0.36.4",
|
|
"rollup-plugin-buble": "^0.14.0",
|
|
"rollup-plugin-flow-no-whitespace": "^1.0.0",
|
|
"rollup-plugin-replace": "^1.1.1",
|
|
"selenium-server": "2.53.1",
|
|
"sinon": "^2.1.0",
|
|
"uglify-js": "^2.7.5",
|
|
"vue": "^2.4.0",
|
|
"webpack": "^2.2.0",
|
|
"webpack-dev-server": "^2.2.1"
|
|
},
|
|
"files": [
|
|
"dist/vue-i18n.js",
|
|
"dist/vue-i18n.min.js",
|
|
"dist/vue-i18n.common.js",
|
|
"dist/vue-i18n.esm.js",
|
|
"src",
|
|
"types",
|
|
"decls"
|
|
],
|
|
"homepage": "https://github.com/kazupon/vue-i18n#readme",
|
|
"keywords": [
|
|
"i18n",
|
|
"internationalization",
|
|
"plugin",
|
|
"vue",
|
|
"vue.js"
|
|
],
|
|
"license": "MIT",
|
|
"main": "dist/vue-i18n.common.js",
|
|
"module": "dist/vue-i18n.esm.js",
|
|
"types": "types/index.d.ts",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/kazupon/vue-i18n.git"
|
|
},
|
|
"scripts": {
|
|
"build": "node config/build.js",
|
|
"changelog": "conventional-changelog -i CHANGELOG.md -s -n ./node_modules/git-commit-message-convention/convention.js",
|
|
"clean": "rm -rf coverage && rm -rf dist/*.js* && rm ./*.log",
|
|
"coverage": "cat ./coverage/lcov.info",
|
|
"dev": "BABEL_ENV=test webpack-dev-server --inline --hot --open --content-base ./test/unit/ --config config/webpack.dev.conf.js",
|
|
"docs": "gitbook serve ./gitbook ./docs",
|
|
"docs:build": "node config/version.js && gitbook build ./gitbook ./docs",
|
|
"docs:install": "gitbook install ./gitbook",
|
|
"flow": "flow check",
|
|
"dtslint": "dtslint types",
|
|
"lint": "eslint src test config",
|
|
"release": "conventional-github-releaser -n ./node_modules/git-commit-message-convention/convention.js",
|
|
"sauce": "npm run sauce:coolkids && npm run sauce:ie && npm run sauce:mobile",
|
|
"sauce:coolkids": "karma start config/karma.sauce.conf.js -- 0",
|
|
"sauce:ie": "karma start config/karma.sauce.conf.js -- 1",
|
|
"sauce:mobile": "karma start config/karma.sauce.conf.js -- 2",
|
|
"test": "npm run lint && npm run flow && npm run test:cover && npm run test:e2e",
|
|
"test:cover": "BABEL_ENV=test karma start config/karma.cover.conf.js",
|
|
"test:e2e": "npm run build && node test/e2e/runner.js",
|
|
"test:unit": "BABEL_ENV=test karma start config/karma.unit.conf.js"
|
|
},
|
|
"unpkg": "dist/vue-i18n.js"
|
|
}
|