-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.65 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
{
"name": "@chromatix/eslint-config-chromatix",
"version": "1.0.7",
"description": "Chromatix custom config for ESLint. Based heavily on the WordPress Coding Standards but with some of our own too.",
"homepage": "https://github.com/ChromatixAU/eslint-config-chromatix#readme",
"author": "Tim Malone <tim.malone@chromatix.com.au>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ChromatixAU/eslint-config-chromatix.git"
},
"bugs": {
"url": "https://github.com/ChromatixAU/eslint-config-chromatix/issues"
},
"main": "index.js",
"scripts": {
"lint": "cross-env DEBUG=eslint:cli-engine eslint --color --ignore-pattern coverage/ \"**/*.js\"",
"test": "jest --verbose --coverage"
},
"jest": {
"testMatch": [
"**/tests/**/*.js"
],
"transform": {
"\\.[t|j]sx?$": "babel-jest"
},
"transformIgnorePatterns": [
"node_modules/(?!(module))"
]
},
"keywords": [
"eslint",
"eslint-config",
"wordpress",
"chromatix",
"javascript"
],
"dependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@wordpress/eslint-plugin": "^13.5.0",
"babel-jest": "^29.3.1",
"eslint": "^8.0.0",
"eslint-plugin-jest": "^27.1.4",
"eslint-plugin-nuxt": "^4.0.0",
"jest": "^29.3.1",
"prettier": "^2.0.0",
"typescript": "^4.8.4"
},
"devDependencies": {
"@types/jest": "^29.2.2",
"cross-env": "^7.0.3",
"is-plain-object": "^5.0.0"
},
"peerDependencies": {
"@wordpress/eslint-plugin": "^13.5.0",
"eslint-plugin-jest": "^27.1.4",
"jest": "^29.3.1"
}
}