-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.16 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
{
"name": "@sompylasar/code-insights",
"version": "0.0.1",
"description": "A set of CLI tools that run over your JavaScript source code and show some stats useful for code health maintenance and refactoring.",
"keywords": [],
"author": "Ivan Babak <babak.john@gmail.com>",
"license": "MIT",
"main": "./src/index.js",
"bin": {
"code-insights": "./bin/cli.js"
},
"engines": {
"node": "^8.15.0"
},
"dependencies": {
"ast-types": "^0.11.7",
"babel-eslint": "^10.0.1",
"chalk": "^2.4.1",
"debug": "^4.1.0",
"escomplex": "^2.0.0-alpha",
"glob": "^7.1.3",
"leasot": "^6.6.2",
"listr": "^0.14.3",
"lodash": "^4.17.11",
"minimist": "^1.2.0",
"pretty-error": "^2.1.1",
"prettyjson": "^1.2.1"
},
"devDependencies": {
"eslint": "^5.10.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-jest": "^22.1.2",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-prettier": "^3.0.0",
"jest": "^23.6.0",
"jest-date-mock": "^1.0.6",
"prettier": "^1.15.3"
},
"jest": {
"setupFiles": [
"jest-date-mock"
]
},
"scripts": {
"lint": "eslint ./src",
"test": "jest"
}
}