forked from cypress-io/cypress-vue-unit-test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
118 lines (118 loc) · 3.01 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "@prepair/cypress-vue-unit-test",
"description": "A little helper to unit test Vue components in the Cypress.io E2E test runner",
"version": "1.11.7",
"author": "Gleb Bahmutov <[email protected]>",
"bugs": "https://github.com/prepair/cypress-vue-unit-test/issues",
"config": {
"pre-git": {
"commit-msg": "simple",
"pre-commit": [
"npm prune",
"npm run deps",
"npm test",
"git add src/*.js",
"npm run ban"
],
"pre-push": [
"npm run unused-deps",
"npm run license",
"npm run ban -- --all",
"npm run size"
],
"post-commit": [],
"post-merge": []
}
},
"engines": {
"node": ">=8"
},
"files": [
"src/*.js",
"preprocessor/*.js",
"!src/*-spec.js"
],
"homepage": "https://github.com/prepair/cypress-vue-unit-test#readme",
"keywords": [
"cypress",
"vue"
],
"license": "MIT",
"main": "src/",
"private": false,
"publishConfig": {
"registry": "http://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/prepair/cypress-vue-unit-test.git"
},
"scripts": {
"ban": "ban",
"deps": "echo skip deps-ok && dependency-check --no-dev .",
"issues": "git-issues",
"license": "license-checker --production --onlyunknown --csv",
"lint": "standard --verbose --fix src/*.js preprocessor/*.js",
"prelint": "npm run pretty",
"pretest": "npm run lint",
"pretty": "prettier-standard 'src/*.js' 'preprocessor/*.js'",
"size": "t=\"$(npm pack .)\"; wc -c \"${t}\"; tar tvf \"${t}\"; rm \"${t}\";",
"test": "npm run cy:run",
"unit": "mocha src/*-spec.js",
"unused-deps": "echo skip dependency-check --unused --no-dev --no-peer . --entry cypress/plugins/index.js",
"semantic-release": "semantic-release",
"cy:open": "cypress open",
"cy:run": "cypress run"
},
"release": {
"analyzeCommits": {
"preset": "angular",
"releaseRules": [
{
"type": "break",
"release": "major"
}
]
}
},
"devDependencies": {
"axios": "0.19.2",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"ban-sensitive-files": "1.9.4",
"css-loader": "3.4.2",
"cypress": "4.1.0",
"dependency-check": "3.4.1",
"deps-ok": "1.4.1",
"git-issues": "1.3.1",
"license-checker": "19.0.0",
"mocha": "7.1.0",
"pre-git": "3.17.1",
"prettier-standard": "8.0.1",
"semantic-release": "15.14.0",
"simple-commit-message": "4.0.13",
"standard": "12.0.1",
"vue": "2.6.11",
"vue-i18n": "7.8.1",
"vue-loader": "14.2.4",
"vue-router": "3.0.7",
"vue-template-compiler": "2.6.11",
"vuex": "3.1.3",
"webpack": "4.42.0"
},
"standard": {
"globals": [
"Cypress",
"cy",
"expect"
]
},
"peerDependencies": {
"vue": "2",
"cypress": "*"
},
"dependencies": {
"@cypress/webpack-preprocessor": "4.1.3",
"common-tags": "1.8.0",
"@kazupon/vue-i18n-loader": "0.5.0"
}
}