forked from DevExpress/testcafe-vue-selectors
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.23 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
{
"name": "testcafe-vue-selectors",
"version": "3.1.1",
"description": "VueJS selectors for TestCafe",
"repository": "https://github.com/DevExpress/testcafe-vue-selectors",
"author": {
"name": "Developer Express Inc.",
"url": "https://devexpress.com"
},
"main": "lib/index",
"files": [
"lib"
],
"license": "MIT",
"scripts": {
"lint": "eslint lib/index.js",
"test-server": "webpack-dev-server",
"testcafe": "testcafe all test/*.js --app \"npm run test-server\" --app-init-delay 10000",
"test": "npm run lint && npm run testcafe",
"publish-please": "publish-please",
"prepublish": "publish-please guard"
},
"devDependencies": {
"babel-loader": "^8.2.2",
"css-loader": "^5.1.1",
"eslint": "^7.21.0",
"eslint-plugin-testcafe": "^0.2.1",
"prettier": "1.12.1",
"publish-please": "^5.4.3",
"pug": "^3.0.2",
"testcafe": "*",
"vue": "^2.5.4",
"vue-loader": "^14.2.2",
"vue-router": "^3.0.1",
"vue-template-compiler": "^2.5.4",
"webpack": "^4.0.0",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.11"
},
"keywords": [
"testcafe",
"vue",
"vuejs",
"selectors",
"plugin"
],
"peerDependencies": {
"testcafe": "*"
}
}