This repository has been archived by the owner on Jun 20, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
89 lines (89 loc) · 2.02 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
{
"name": "eslint-plugin-wordpress",
"version": "0.1.0",
"description": "A collection of custom ESLint rules that help enforce JavaScript coding standard in the WordPress project.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ntwb/eslint-plugin-wordpress.git"
},
"homepage": "https://github.com/ntwb/eslint-plugin-wordpress#readme",
"author": {
"name": "Stephen Edgar",
"email": "stephen@netweb.com.au",
"url": "https://netweb.com.au"
},
"engines": {
"node": ">=8.9.3"
},
"scripts": {
"commitmsg": "commitlint -e $GIT_PARAMS",
"dry-release": "npmpub --dry --verbose",
"find-rules": "eslint-find-rules lib/configs/all.js -u -n -d",
"jest": "jest",
"lint": "eslint .",
"pretest": "npm run lint",
"release": "npmpub --verbose",
"test": "jest",
"watch": "jest --watch"
},
"keywords": [
"code",
"code style",
"eslint",
"eslintconfig",
"eslint-config",
"eslintplugin",
"eslint-plugin",
"eslint-plugin-wordpress",
"JavaScript",
"jscs",
"jshint",
"jslint",
"lint",
"linter",
"linting",
"standard",
"validate",
"wordpress"
],
"dependencies": {
"eslint-plugin-i18n": "~1.2.0",
"eslint-plugin-jsdoc": "~3.5.0",
"eslint-plugin-node": "~6.0.1",
"eslint-plugin-wpcalypso": "~4.0.1",
"merge": "~1.2.0"
},
"devDependencies": {
"@commitlint/cli": "~6.1.3",
"@commitlint/config-conventional": "~6.1.3",
"coveralls": "~3.0.0",
"eslint": "~4.18.2",
"eslint-find-rules": "~3.2.1",
"eslint-plugin-jest": "~21.14.0",
"eslint-plugin-wordpress": "git://github.com/WordPress-Coding-Standards/eslint-plugin-wordpress.git#552af1454d175e15f6d25aadc2ccde30a1922d4f",
"husky": "~0.14.3",
"is-plain-obj": "~1.1.0",
"jest": "~22.4.2",
"npmpub": "~4.0.1",
"strip-ansi": "~4.0.0"
},
"peerDependencies": {
"eslint": ">=2.9.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"jest": {
"roots": [
"__tests__"
],
"testEnvironment": "node",
"testMatch": [
"**/?(*.)(spec|test).js"
],
"verbose": true
}
}