-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.15 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
{
"name": "eslint-plugin-no-constructor-bind",
"version": "2.0.4",
"description": "Prefer class arrow methods to binding in the constructor",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/markalfred/eslint-plugin-no-constructor-bind.git"
},
"bugs": {
"url": "https://github.com/markalfred/eslint-plugin-no-constructor-bind/issues"
},
"directories": {
"doc": "docs",
"lib": "lib",
"test": "tests"
},
"dependencies": {
"requireindex": "~1.2.0"
},
"devDependencies": {
"babel-eslint": "^10.0.0",
"coveralls": "^3.1.0",
"eslint": "^6.8.0",
"istanbul": "^0.4.5",
"mocha": "^7.2.0",
"mocha-lcov-reporter": "^1.3.0"
},
"scripts": {
"test": "mocha tests --recursive",
"coverage": "istanbul cover _mocha -- tests --recursive",
"precoveralls": "npm run coverage -- --report lcovonly",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"postcoveralls": "rm -rf ./coverage"
},
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin"
],
"engines": {
"node": ">=8.0.0"
},
"author": "Mark Battersby",
"license": "ISC"
}