-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.36 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.36 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
{
"name": "code-archaeology-kit",
"version": "1.0.0",
"description": "Standalone CLI that scans a git repository and produces **actionable, privacy-safe** \u201cwhat to look at next\u201d archaeology artifacts (high-churn files, temporal coupling pairs, stale/abandoned structures).",
"main": "index.js",
"directories": {
"doc": "docs",
"test": "tests"
},
"scripts": {
"test": "bash scripts/run-pytest.sh -q",
"test:deep": "bash scripts/test-with-artifacts.sh all",
"docs:lint": "markdownlint-cli2 \"**/*.md\" \"#node_modules\" \"#test-artifacts\" \"#tests\" \"#**/.pytest_cache\"",
"docs:readability": "python scripts/check_readability.py README.md",
"test:artifacts": "bash scripts/test-with-artifacts.sh all",
"test:artifacts:unit": "bash scripts/test-with-artifacts.sh unit",
"test:artifacts:integration": "bash scripts/test-with-artifacts.sh integration",
"test:artifacts:e2e": "bash scripts/test-with-artifacts.sh e2e"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jscraik/code-archaeology-kit.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"bugs": {
"url": "https://github.com/jscraik/code-archaeology-kit/issues"
},
"homepage": "https://github.com/jscraik/code-archaeology-kit#readme",
"devDependencies": {
"markdownlint-cli2": "^0.22.1"
}
}