-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
65 lines (65 loc) · 1.87 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
{
"name": "mwangaben-vthelpers",
"version": "1.3.0",
"description": "Vue Test Helper Functions, inspired by Jeffery Way of laracasts.com",
"main": "index.js",
"scripts": {
"test": "mocha-webpack --webpack-config webpack.config.js --require test/setup.js test/**/*.spec.js",
"watch": "npm run test -- -w",
"lint": "eslint --ext .js,.vue, --ignore-path .gitignore .",
"lint-staged": "lint-staged"
},
"pre-commit": "lint-staged, test",
"lint-staged": {
"*.js": "eslint --ext .js",
"*.vue": "eslint --ext .vue"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mwangaben/mwangaben-vthelpers.git"
},
"keywords": [
"mwangaben-vthelpers,",
"vue-test-helpers",
"vue-test-utils-helpers"
],
"files": [
"src/*.js"
],
"author": "Benedict Mwanga",
"license": "ISC",
"bugs": {
"url": "https://github.com/mwangaben/mwangaben-vthelpers/issues"
},
"homepage": "https://github.com/mwangaben/mwangaben-vthelpers#readme",
"dependencies": {
"@vue/test-utils": "^1.0.0-beta.14",
"expect": "^21.2.1",
"mocha-webpack": "^2.0.0-beta.0"
},
"devDependencies": {
"@babel/preset-env": "^7.6.3",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-markdown": "^1.0.0-beta.6",
"eslint-plugin-mocha": "^5.0.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.0.1",
"eslint-plugin-vue": "^4.4.0",
"jsdom": "^16.5.0",
"jsdom-global": "^3.0.2",
"lint-staged": "^7.0.4",
"mocha": "^5.2.0",
"pre-commit": "^1.2.2",
"vue": "^2.5.17",
"vue-loader": "^15.4.1",
"vue-template-compiler": "^2.5.3",
"webpack": "^4.17.2",
"webpack-cli": "^3.1.0"
}
}