-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.18 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
{
"name": "eslint-plugin-consistent-subscribe",
"version": "1.4.0",
"description": "ESLint rule, checking pairing subscriptions",
"main": "lib/index.js",
"husky": {
"hooks": {
"pre-commit": "yarn lint",
"pre-push": "yarn lint && yarn test"
}
},
"scripts": {
"lint": "eslint lib test",
"test": "mocha",
"watch": "mocha --watch",
"prepublishOnly": "npm run lint && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Gvozd/eslint-plugin-consistent-subscribe.git"
},
"keywords": [
"eslint",
"eslint-plugin",
"eslintplugin",
"events",
"subscribes",
"event",
"subscribe"
],
"author": "Gvozd",
"license": "MIT",
"bugs": {
"url": "https://github.com/Gvozd/eslint-plugin-consistent-subscribe/issues"
},
"homepage": "https://github.com/Gvozd/eslint-plugin-consistent-subscribe#readme",
"engines": {
"node": ">=4.6.0"
},
"peerDependencies": {
"eslint": ">=3.8.0"
},
"devDependencies": {
"eslint": "^6.7.2",
"eslint-config-loris": "^9.1.0",
"husky": "^3.1.0",
"mocha": "^6.2.3"
},
"dependencies": {},
"resolutions": {
"minimist": "0.2.1"
}
}