-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.13 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
{
"name": "repo-counts",
"version": "0.1.2",
"description": "Count the code in your repo(s)",
"main": "src/index.mjs",
"bin": "bin/cli.js",
"type": "module",
"scripts": {
"help": "node src/index.mjs -h",
"test:config": "node spec/run.mjs",
"test": "mocha ./spec/*.spec.mjs -R min",
"postversion": "git push origin HEAD --follow-tags && npm publish"
},
"dependencies": {
"binary-extensions": "2.2.0",
"commander": "9.0.0",
"p-limit": "4.0.0",
"progress": "2.0.3"
},
"devDependencies": {
"@babel/eslint-parser": "7.14.7",
"@babel/plugin-syntax-top-level-await": "7.14.5",
"eslint": "7.30.0",
"eslint-config-qb": "1.0.0",
"eslint-plugin-simple-import-sort": "7.0.0",
"mocha": "^9.2.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/autioch/repo-counts.git"
},
"keywords": [
"git",
"counter",
"repository",
"report",
"cloc",
"loc"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/autioch/repo-counts/issues"
},
"homepage": "https://github.com/autioch/repo-counts#readme"
}