-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
114 lines (114 loc) · 4.11 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
{
"name": "eslint-plugin-testcafe-community",
"version": "0.0.0-semantically-versioned",
"description": "ESLint rules & globals for TestCafe, from the TestCafe community",
"main": "dist/plugin.min.cjs",
"types": "dist/plugin.d.ts",
"files": [
"dist/**"
],
"repository": {
"type": "git",
"url": "git://github.com/testcafe-community/eslint-plugin-testcafe-community"
},
"author": "Ben Monro <[email protected]>",
"contributors": [
"Mikhail Losev <[email protected]>",
"codejedi365 <[email protected]>",
"Matthias Klass <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/testcafe-community/eslint-plugin-testcafe-community/issues"
},
"homepage": "https://github.com/testcafe-community/eslint-plugin-testcafe-community",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"rules",
"test",
"testcafe"
],
"scripts": {
"build": "run-s --silent build:*",
"build:prod": "webpack --mode=production --node-env=production",
"build:readme": "ts-node -O '{\"module\":\"commonjs\"}' scripts/generate-readme-table.ts",
"commit": "git commit",
"commit-retry": "CZ_RETRY=true git commit",
"format": "npm run lint -- --fix",
"format:file": "npm run lint:file -- --fix",
"lint": "npm run lint:file -- . --",
"lint:file": "eslint",
"test": "run-s --silent test:*",
"test:unit": "jest --selectProjects UNIT",
"test:plugin": "jest --selectProjects INTEGRATION --coverage=false",
"test:docs": "jest --selectProjects DOCUMENTATION --coverage=false",
"setup": "run-s --silent setup:*",
"setup:expkg": "ts-node -O '{\"module\":\"commonjs\"}' scripts/setup-example-pkg.ts",
"prepare": "is-ci || husky install",
"prepublishOnly": "is-ci && run-s build",
"watch": "npm run test:unit -- --watch --"
},
"devDependencies": {
"@codejedi365/jest-serial-runner": "^2.0.0",
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"@commitlint/cz-commitlint": "^13.2.1",
"@semantic-release/changelog": "^6.0.1",
"@types/eslint": "^7.28.0",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^27.0.2",
"@types/node": "^16.11.0",
"@types/semver": "^7.3.9",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"@typescript-eslint/types": "^5.2.0",
"commitizen": "^4.2.4",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^14.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-eslint-plugin": "^3.6.1",
"eslint-plugin-jest": "^24.5.0",
"eslint-plugin-mdx": "^1.15.1",
"eslint-plugin-prettier": "^4.0.0",
"filemanager-webpack-plugin": "^6.1.7",
"fs-extra": "^10.0.0",
"husky": "^7.0.2",
"is-ci": "^3.0.0",
"jest": "^27.2.4",
"jest-extended": "^1.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1",
"remark-preset-lint-consistent": "^4.0.0",
"remark-preset-lint-markdown-style-guide": "^4.0.0",
"remark-preset-lint-recommended": "^5.0.0",
"remark-preset-prettier": "^0.5.1",
"resolve-from": "^5.0.0",
"semantic-release": "^19.0.3",
"semantic-release-npm-deprecate-old-versions": "^1.1.6",
"ts-jest": "^27.0.5",
"ts-loader": "^9.2.6",
"ts-node": "^10.2.1",
"typescript": "^4.4.3",
"webpack": "^5.61.0",
"webpack-cli": "^4.9.1",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"@typescript-eslint/experimental-utils": "^5.2.0",
"semver": "^7.3.5"
},
"peerDependencies": {
"eslint": "^7.0.0 || ^8.0.0"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"engines": {
"node": ">=10.24"
}
}