-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.32 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.32 KB
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": "codebase-stats-collector",
"version": "1.0.0",
"description": "Module to collect data from a git repository.",
"type": "module",
"main": "index.js",
"scripts": {
"build": "tsc",
"test": "NODE_OPTIONS=\"--loader ts-node/esm\" cucumber-js --publish-quiet",
"test:coverage": "c8 --100 --check-coverage npm test",
"check-format": "prettier --check .",
"fix-format": "prettier --write .",
"lint": "eslint . --ext .ts",
"fix-lint": "eslint . --ext .ts --fix",
"fix": "npm run fix-format && npm run fix-lint",
"run-dev": "NODE_OPTIONS=\"--loader ts-node/esm\" node src/index.ts",
"run-built": "node dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anton-107/codebase-stats-collector.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/anton-107/codebase-stats-collector/issues"
},
"homepage": "https://github.com/anton-107/codebase-stats-collector#readme",
"dependencies": {
"isomorphic-git": "^1.21.0"
},
"devDependencies": {
"@cucumber/cucumber": "^8.10.0",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"c8": "^7.13.0",
"eslint": "^8.32.0",
"eslint-plugin-simple-import-sort": "^9.0.0",
"prettier": "^2.8.3",
"ts-node": "^10.9.1"
}
}