This repository was archived by the owner on Dec 25, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 431
/
Copy pathpackage.json
83 lines (83 loc) · 3.05 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
{
"name": "vue-validator",
"description": "Validator component for Vue.js",
"version": "2.0.0-alpha.5",
"author": {
"name": "kazuya kawaguchi",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/vuejs/vue-validator/issues"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"babel": "^5.8.23",
"babel-core": "^5.8.23",
"babel-loader": "^5.3.2",
"babel-plugin-espower": "^1.0.0",
"commander": "^2.9.0",
"cz-conventional-changelog": "^1.1.4",
"eslint": "^1.3.1",
"espower-babel": "^3.3.0",
"istanbul-instrumenter-loader": "^0.1.3",
"json-loader": "^0.5.2",
"karma": "^0.13.9",
"karma-chrome-launcher": "^0.2.0",
"karma-coverage": "^0.5.2",
"karma-coveralls": "^1.1.2",
"karma-firefox-launcher": "^0.1.6",
"karma-mocha": "^0.2.0",
"karma-mocha-reporter": "^1.1.1",
"karma-phantomjs-launcher": "^0.2.1",
"karma-safari-launcher": "^0.1.1",
"karma-sauce-launcher": "^0.2.14",
"karma-sinon": "^1.0.4",
"karma-sourcemap-loader": "^0.3.5",
"karma-webpack": "^1.7.0",
"mocha": "^2.3.1",
"nightmare": "^2.0.5",
"phantomjs": "^1.9.18",
"power-assert": "^1.0.0",
"sinon": "^1.17.2",
"vue": "^1.0.10",
"webpack": "^1.12.1",
"webpack-dev-server": "^1.11.0"
},
"homepage": "https://github.com/vuejs/vue-validator",
"keywords": [
"plugin",
"validation",
"vue",
"vue.js"
],
"license": "MIT",
"main": "dist/vue-validator.js",
"repository": {
"type": "git",
"url": "https://github.com/vuejs/vue-validator.git"
},
"scripts": {
"browser": "VUE_VALIDATOR_TYPE=browser karma start config/karma.conf.js",
"build": "babel src --out-dir lib --source-maps-inline",
"bundle": "webpack --config config/webpack.conf.js && webpack --config config/webpack.min.conf.js",
"ci": "npm run lint && npm run coverage && npm run coveralls && npm run sauce",
"clean": "rm -rf lib && 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 --inline --quite --hot --config config/webpack.dev.conf.js --content-base ./",
"dist": "npm run build && npm run bundle",
"e2e": "webpack-dev-server --quiet -h --config config/webpack.e2e.conf.js --content-base test/e2e & mocha -t 20000 --compilers js:espower-babel/guess test/e2e/test.js && kill $! || (kill $! && exit 1)",
"ie": "VUE_VALIDATOR_TYPE=sauce SAUCE=batch2 karma start config/karma.conf.js",
"lint": "eslint src test/specs",
"mobile": "VUE_VALIDATOR_TYPE=sauce SAUCE=batch3 karma start config/karma.conf.js",
"sauce": "npm run coolkids && npm run ie && npm run mobile",
"test": "npm run ci",
"unit": "karma start config/karma.conf.js",
"watch": "babel src --out-dir lib --watch --source-maps-inline"
}
}