forked from vuejs/vue-test-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 3.46 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
{
"name": "vue-test-utils",
"version": "1.0.0-beta.7",
"description": "Utilities for testing Vue components.",
"main": "dist/vue-test-utils.js",
"types": "types/index.d.ts",
"files": [
"dist/*.js",
"types/index.d.ts"
],
"scripts": {
"build": "node build/build.js",
"docs": "cd docs && gitbook install && gitbook serve",
"docs:deploy": "build/update-docs.sh",
"docs:serve": "cd docs && gitbook serve",
"flow": "flow check",
"lint": "eslint --ext js,vue src test flow build --ignore-path .gitignore",
"lint:docs": "eslint --ext js,vue,md docs --ignore-path .gitignore",
"lint:fix": "npm run lint -- --fix",
"setup": "node build/install-hooks.js",
"test": "npm run lint && npm run lint:docs && npm run flow && npm run test:types && npm run test:unit && npm run test:unit:karma",
"test:compatibility": "test/test.sh",
"test:unit": "mocha-webpack --webpack-config build/webpack.test.config.js test/unit/specs --recursive --require test/unit/setup/mocha.setup.js",
"test:unit:karma": "cross-env BABEL_ENV=test TARGET=browser karma start test/unit/setup/karma.conf.js --single-run",
"test:types": "tsc -p types",
"release": "bash build/release.sh",
"release:note": "node build/gen-release-note.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vuejs/vue-test-utils.git"
},
"author": "vuejs",
"license": "MIT",
"bugs": {
"url": "https://github.com/vuejs/vue-test-utils/issues"
},
"homepage": "https://github.com/vuejs/vue-test-utils#readme",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-istanbul": "^4.1.4",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-flow-vue": "^1.0.0",
"babel-preset-stage-2": "^6.24.1",
"chai": "^4.0.0",
"chalk": "^2.1.0",
"conventional-changelog": "^1.1.3",
"cross-env": "^5.0.0",
"css-loader": "^0.28.4",
"eslint": "^3.19.0",
"eslint-plugin-flowtype": "^2.34.0",
"eslint-plugin-html": "^3.2.0",
"eslint-plugin-markdown": "^1.0.0-beta.6",
"eslint-plugin-vue": "^2.0.1",
"eslint-plugin-vue-libs": "1.2.0",
"flow-bin": "^0.47.0",
"gitbook-cli": "^2.3.0",
"gitbook-plugin-edit-link": "^2.0.2",
"gitbook-plugin-github": "^3.0.0",
"gitbook-plugin-theme-vuejs": "^1.1.0",
"jsdom": "^11.5.1",
"jsdom-global": "^3.0.2",
"karma": "^1.7.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-phantomjs-shim": "^1.4.0",
"karma-sinon-chai": "^1.3.1",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "^0.0.31",
"karma-webpack": "^2.0.3",
"mocha": "^3.5.0",
"mocha-webpack": "^1.0.0-rc.1",
"rollup": "^0.43.0",
"rollup-plugin-buble": "^0.15.0",
"rollup-plugin-commonjs": "^8.2.0",
"rollup-plugin-flow-no-whitespace": "^1.0.0",
"rollup-plugin-node-resolve": "^3.0.0",
"shelljs": "^0.7.8",
"sinon": "^2.3.2",
"sinon-chai": "^2.10.0",
"typescript": "^2.4.1",
"vue": "^2.4.2",
"vue-loader": "^13.0.5",
"vue-router": "^2.7.0",
"vue-template-compiler": "^2.4.2",
"vuetify": "^0.16.9",
"vuex": "^2.4.1",
"webpack": "^3.6.0",
"webpack-node-externals": "^1.6.0"
},
"peerDependencies": {
"vue": "2.x",
"vue-template-compiler": "^2.x"
},
"dependencies": {
"lodash": "^4.17.4"
}
}