-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
55 lines (55 loc) · 1.41 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
54
55
{
"name": "@feedzai/repo-analyzer",
"version": "0.1.46",
"description": "Analises a frontend repo to get consistency metrics",
"main": "src/index.js",
"scripts": {
"lint": "eslint src/*.js",
"build": "node src/index.js",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"authors": [
],
"license": "MIT",
"bin": {
"repo-analyzer": "./src/index.js"
},
"repository": {
"type": "git",
"url": "[email protected]:feedzai/repo-analyzer.git"
},
"dependencies": {
"@feedzai/analyzer-utilities": "^1.0.47",
"@feedzai/eslint-config-feedzai": "^4.0.1",
"async": "^3.1.0",
"axios": "^0.21.1",
"axios-rate-limit": "^1.1.2",
"cli-table": "^0.3.1",
"email-templates": "^6.0.0",
"find": "^0.3.0",
"find-in-files": "^0.5.0",
"has-yarn": "^2.1.0",
"he": "^1.2.0",
"jest": "^24.9.0",
"lcov-parse": "^1.0.0",
"lodash": "^4.17.11",
"markdown-table": "^1.1.2",
"ncp": "^2.0.0",
"pino": "^5.13.2",
"pino-pretty": "^3.2.1",
"q": "^1.5.1",
"strip-json-comments": "^2.0.1",
"yargs": "^13.3.0"
},
"devDependencies": {
"@feedzai/eslint-config-feedzai-react": "^4.0.1",
"eslint": "^5.12.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^21.27.2",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.12.3"
}
}