-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 936 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
{
"name": "eslint-plugin-lcom",
"description": "ESLint plugin to keep your JavaScript classes high cohesive by using LCOM (Lack of Cohesion of Methods) metric.",
"version": "1.0.0",
"author": "Fuji Haruka",
"bugs": {
"url": "https://github.com/FujiHaruka/eslint-plugin-lcom/issues"
},
"dependencies": {},
"devDependencies": {
"eslint": "^7.8.1",
"mocha": "^8.1.3",
"prettier": "^2.1.1"
},
"files": [
"lib"
],
"homepage": "https://github.com/FujiHaruka/eslint-plugin-lcom",
"keywords": [
"LCOM",
"cohesion",
"eslint",
"eslint-plugin",
"eslintplugin"
],
"license": "MIT",
"main": "lib/index.js",
"repository": "FujiHaruka/eslint-plugin-lcom",
"scripts": {
"format": "prettier --write 'lib/**/*.js' 'test/**/*.js'",
"lint": "eslint 'lib/**/*.js' 'test/**/*.js'",
"prepare": "ln -s $PWD $PWD/node_modules/eslint-plugin-lcom",
"test": "mocha"
}
}