-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 869 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
{
"name": "git-repo-lines-of-code",
"version": "1.0.3",
"description": "Get your Github repository's lines of code with an option of excluding any files from the stat",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -b --clean && tsc",
"start": "node dist/index.js",
"dev": "yarn run build && node dist/index.js",
"test": "jest --passWithNoTests"
},
"keywords": [
"Javascript",
"Typescript",
"Github",
"API",
"Lines of code",
"LOC"
],
"author": "Ayodeji Moronkeji",
"license": "MIT",
"repository": "github:d-beloved/git-repo-lines-of-code",
"bugs": "https://github.com/d-beloved/git-repo-lines-of-code/issues",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/node": "^22.10.2",
"jest": "^29.7.0",
"typescript": "^5.7.2"
}
}