-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.7 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.7 KB
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
{
"name": "eslint-plugin-ui-testing",
"version": "2.0.1",
"description": "ESLint rules for UI testing tools WebdriverIO, Cypress, TestCafe, Playwright, Puppeteer",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"testing",
"test",
"ui-testing",
"ui",
"automation",
"cypress",
"playwright",
"puppeteer",
"testcafe",
"webdriverio"
],
"author": "Kwo Ding",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kwoding/eslint-plugin-ui-testing.git"
},
"homepage": "https://github.com/kwoding/eslint-plugin-ui-testing",
"bugs": {
"url": "https://github.com/kwoding/eslint-plugin-ui-testing/issues"
},
"main": "index.js",
"scripts": {
"build": "rimraf ./dist && npm run lint && tsc",
"postbuild": "cp package.json ./dist && cp README.md ./dist && cp LICENSE ./dist",
"lint": "eslint . --ext .js,.ts",
"test": "jest --clearCache && jest",
"pack": "npm pack ./dist",
"publish": "cd dist && npm publish"
},
"peerDependencies": {
"eslint": ">= 7"
},
"dependencies": {
"@typescript-eslint/experimental-utils": "^5.3.0"
},
"devDependencies": {
"@types/jest": "^26.0.14",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"eslint": "^7",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jest": "^25.2.2",
"eslint-plugin-jest-formatting": "^3.0.0",
"jest": "^27.3.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4"
},
"engines": {
"node": "^10.12.0 || >=12.0.0",
"npm": ">=6"
}
}