-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 928 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 928 Bytes
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
{
"name": "eslint-stats",
"version": "1.0.1",
"description": "A package of custom formatters that show aggregated stats of eslint errors",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"unit": "cross-env NODE_ENV=test nyc jasmine test/**/*.js",
"test": "npm run lint && npm run unit",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/ganimomer/eslint-stats.git"
},
"author": {
"name": "Omer Ganim",
"email": "ganimomer@gmail.com",
"url": "http://github.com/ganimomer"
},
"engines": {
"node": ">=4.0.0"
},
"license": "MIT",
"devDependencies": {
"coveralls": "3.0.2",
"cross-env": "5.2.0",
"eslint": "5.8.0",
"eslint-config-wix-editor": "6.0.0",
"jasmine": "3.3.0",
"nyc": "13.1.0"
},
"dependencies": {
"chalk": "^2.4.1",
"lodash": "^4.17.4"
}
}