-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 848 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
{
"name": "cyclomatic-js",
"description": "A library to provide the Cyclomatic Complexity analysis of Vanilla JS source files",
"version": "0.0.0-development",
"files": [
"src/index.js",
"src/calculate-complexity.js",
"src/report-generator.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/offgriddev/cyclomatic-js.git"
},
"keywords": ["cyclomatic", "complexity", "metrics", "modularization"],
"main": "src/index.js",
"engines": {
"node": ">=18"
},
"scripts": {
"format": "prettier --write **/*.js",
"lint": "eslint .",
"test": "node --test"
},
"type": "module",
"license": "MIT",
"dependencies": {
"abstract-syntax-tree": "^2.21.1"
},
"devDependencies": {
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"prettier": "^3.0.3"
}
}