-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.1 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.1 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
43
44
45
46
47
{
"name": "humancov",
"version": "1.2.0",
"description": "CLI tool for tracking AI-generated vs human-written code provenance",
"type": "module",
"bin": {
"humancov": "./bin/humancov.js"
},
"files": [
"bin/",
"src/",
"LICENSE"
],
"engines": {
"node": ">=18"
},
"author": "enixCode",
"repository": {
"type": "git",
"url": "git+https://github.com/enixCode/humancov.git"
},
"bugs": {
"url": "https://github.com/enixCode/humancov/issues"
},
"homepage": "https://github.com/enixCode/humancov#readme",
"scripts": {
"test": "node --test test/badge.test.js test/cli.test.js test/comments.test.js test/ignore.test.js test/manifest.test.js test/parser.test.js test/report.test.js test/scanner.test.js",
"prepublishOnly": "npm test",
"ci": "act push --matrix os:ubuntu-latest",
"bench": "node bench/perf.js"
},
"dependencies": {
"ignore": "^7.0.5"
},
"keywords": [
"ai",
"provenance",
"code-review",
"cli",
"code-quality",
"transparency"
],
"license": "CC0-1.0",
"publishConfig": {
"access": "public"
}
}