-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1013 Bytes
/
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
{
"name": "eslint-plugin-url",
"version": "1.0.1",
"description": "ESLint plugin with rules that help validate proper URLs.",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"test": "mocha tests --recursive",
"commit": "git-cz"
},
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"url",
"https",
"http"
],
"author": "Yuwei",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/keyfoxth/eslint-plugin-url.git"
},
"homepage": "https://github.com/keyfoxth/eslint-plugin-url#readme",
"bugs": {
"url": "https://github.com/keyfoxth/eslint-plugin-url/issues"
},
"peerDependencies": {
"eslint": "^4.0.0"
},
"dependencies": {
"requireindex": "^1.1.0"
},
"devDependencies": {
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^4.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}