-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 1.89 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
{
"name": "@frogeducation/eslint-plugin-jquery-compat",
"version": "v3.5.8",
"description": "Linting rules for checking jQuery version compatibility",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin"
],
"author": "Frog Education",
"main": "lib/index.js",
"scripts": {
"coverage": "nyc npm t",
"lint": "eslint lib test",
"test": "mocha --recursive",
"watch": "npm t -- --watch",
"release": "npm t && npx semantic-release",
"prepare": "husky install"
},
"dependencies": {
"css-select": "^2.0.2",
"eslint-utils": "^1.4.1",
"glob": "^7.1.4",
"lodash.kebabcase": "^4.1.1"
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"@semantic-release/changelog": "^3.0.4",
"cz-conventional-changelog": "^3.0.2",
"eslint": "^5.16.0",
"husky": "^7.0.0",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"prettier": "^2.3.2",
"pretty-quick": "^3.1.1"
},
"engines": {
"node": ">=0.10.0"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/frogeducation/eslint-plugin-jquery-compat"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog",
"maxHeaderWidth": 72,
"maxLineWidth": 72,
"defaultType": "",
"defaultScope": "",
"defaultSubject": "",
"defaultBody": "",
"defaultIssues": ""
}
},
"prettier": {
"arrowParens": "avoid",
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": true
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/github"
]
}
}