-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 906 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
36
37
38
39
40
41
42
{
"name": "analyze-code",
"version": "0.0.8",
"author": {
"name": "Chris Campbell",
"url": "https://github.com/quaelin"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/quaelin/analyze-code"
},
"bugs": {
"url": "https://github.com/quaelin/analyze-code/issues"
},
"engines": {
"node": ">=10"
},
"main": "./index.js",
"bin": {
"analyze-code": "./bin"
},
"dependencies": {
"count-lines-in-file": "^1.1.0",
"fast-glob": "^3.2.4",
"isbinaryfile": "^4.0.6",
"language-detect": "^1.1.0",
"lodash": "^4.17.21",
"minimist": "^1.2.6",
"particl": "^0.8.3"
},
"devDependencies": {
"eslint": "^7.15.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"jest": "^26.6.3"
},
"scripts": {
"pretest": "eslint ."
}
}