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 13
/
package.json
70 lines (70 loc) · 1.54 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
{
"name": "eslint-config-wordpress",
"version": "2.0.0",
"description": "ESLint shareable config for WordPress",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/WordPress-Coding-Standards/eslint-config-wordpress.git"
},
"homepage": "https://github.com/WordPress-Coding-Standards/eslint-config-wordpress#readme",
"author": {
"name": "Stephen Edgar",
"email": "stephen@netweb.com.au",
"url": "https://netweb.com.au"
},
"engines": {
"node": ">=8.9.3"
},
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"commitmsg": "commitlint -e $GIT_PARAMS",
"dry-release": "npmpub --dry --verbose",
"lint": "eslint . --ignore-path .gitignore",
"pretest": "npm run lint",
"release": "npmpub --verbose",
"test": "jest",
"watch": "jest --watch"
},
"keywords": [
"eslint",
"eslintconfig",
"eslint-config",
"eslint-config-wordpress",
"JavaScript",
"jscs",
"jshint",
"lint",
"linter",
"linting",
"wordpress"
],
"devDependencies": {
"@commitlint/cli": "^7.0.0",
"@commitlint/config-conventional": "^7.0.1",
"eslint": "~4.19.0",
"eslint-plugin-wordpress": "git://github.com/WordPress-Coding-Standards/eslint-plugin-wordpress.git#552af1454d175e15f6d25aadc2ccde30a1922d4f",
"husky": "~1.3.0",
"is-plain-obj": "~2.0.0",
"jest": "~22.4.2",
"npmpub": "~4.1.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"jest": {
"roots": [
"__tests__"
],
"testEnvironment": "node",
"testMatch": [
"**/?(*.)(spec|test).js"
],
"verbose": true
}
}