forked from kazupon/vue-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 4.12 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
{
"name": "vue-validator",
"description": "Validator component for Vue.js",
"version": "2.1.3",
"author": {
"name": "kazuya kawaguchi",
"email": "kawakazu80@gmail.com"
},
"bugs": {
"url": "https://github.com/vuejs/vue-validator/issues"
},
"devDependencies": {
"babel-core": "^6.7.4",
"babel-loader": "^6.2.2",
"babel-plugin-espower": "^2.1.2",
"babel-plugin-rewire": "^1.0.0-beta-5",
"babel-plugin-transform-es2015-modules-commonjs": "^6.7.4",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.5.0",
"babel-preset-es2015-loose": "^7.0.0",
"babel-preset-es2015-loose-rollup": "git+https://github.com/kazupon/babel-preset-es2015-loose-rollup.git#master",
"component-classes": "^1.2.6",
"conventional-changelog-cli": "^1.1.1",
"conventional-github-releaser": "^1.1.2",
"eslint": "^2.7.0",
"eslint-config-standard": "^5.1.0",
"eslint-loader": "^1.3.0",
"eslint-plugin-promise": "^1.1.0",
"eslint-plugin-standard": "^1.3.2",
"git-commit-message-convention": "git://github.com/kazupon/git-commit-message-convention.git",
"istanbul-instrumenter-loader": "^0.2.0",
"json-loader": "^0.5.4",
"karma": "^0.13.22",
"karma-chrome-launcher": "^0.2.0",
"karma-coverage": "^0.5.5",
"karma-coveralls": "^1.1.2",
"karma-firefox-launcher": "^0.1.6",
"karma-mocha": "^0.2.0",
"karma-mocha-reporter": "^2.0.0",
"karma-phantomjs-launcher": "^0.2.3",
"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.1.6",
"phantomjs": "^2.1.3",
"power-assert": "^1.3.0",
"rollup": "^0.25.2",
"rollup-plugin-babel": "^2.2.0",
"rollup-plugin-replace": "^1.1.0",
"sinon": "^1.17.3",
"uglify-js": "^2.6.1",
"vue": "^1.0.20",
"webpack": "^1.12.12",
"webpack-dev-server": "^1.14.1"
},
"files": [
"dist/vue-validator.js",
"dist/vue-validator.min.js",
"dist/vue-validator.common.js",
"src"
],
"homepage": "https://github.com/vuejs/vue-validator",
"jsnext:main": "src/index.js",
"keywords": [
"plugin",
"validation",
"vue",
"vue.js"
],
"license": "MIT",
"main": "dist/vue-validator.common.js",
"repository": {
"type": "git",
"url": "git+https://github.com/vuejs/vue-validator.git"
},
"scripts": {
"browser": "VUE_VALIDATOR_TYPE=browser karma start config/karma.conf.js",
"build": "node config/build.js",
"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 e2e",
"clean": "rm -rf coverage && rm -rf dist/*.*",
"coolkids": "VUE_VALIDATOR_TYPE=sauce SAUCE=batch1 karma start config/karma.conf.js",
"coverage": "VUE_VALIDATOR_TYPE=coverage karma start config/karma.conf.js",
"coveralls": "VUE_VALIDATOR_TYPE=coveralls karma start config/karma.conf.js",
"dev": "webpack-dev-server --quite --config config/webpack.dev.conf.js --host 0.0.0.0",
"dev-test": "webpack-dev-server --quiet --config config/webpack.test.conf.js --host 0.0.0.0",
"docs": "cd docs && gitbook serve",
"docs-deploy": "cd docs && rm -rf _book && gitbook build && cd _book && git init && git add -A && git commit -m 'update book' && git push -f git@github.com:vuejs/vue-validator.git master:gh-pages && cd .. && cd ..",
"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_VALIDATOR_TYPE=sauce SAUCE=batch2 karma start config/karma.conf.js",
"lint": "eslint src config test/specs",
"mobile": "VUE_VALIDATOR_TYPE=sauce SAUCE=batch3 karma start config/karma.conf.js",
"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": "karma start config/karma.conf.js"
}
}