-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.5 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.5 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
48
49
50
51
52
53
54
{
"name": "android-dependecy-tree-diff-viewer",
"version": "1.0.0",
"description": "Android 프로젝트의 의존성 그래프 변경사항을 쉽게 비교할 수 있는 웹 도구입니다.",
"main": "debug-core.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:html": "jest --json --outputFile=test-results.json && node generate-test-report.js"
},
"jest": {
"testEnvironment": "node",
"coverageDirectory": "coverage",
"collectCoverageFrom": [
"js/**/*.js",
"!js/**/*.test.js"
],
"testMatch": [
"**/__tests__/**/*.test.js"
],
"reporters": [
"default",
[
"jest-html-reporter",
{
"pageTitle": "Dependency Tree Diff - Test Report",
"outputPath": "test-report.html",
"includeFailureMsg": true,
"includeConsoleLog": true,
"theme": "defaultTheme",
"logo": "",
"dateFormat": "yyyy-mm-dd HH:MM:ss"
}
]
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/dongx0915/Android-Dependecy-Tree-Diff-Viewer.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"bugs": {
"url": "https://github.com/dongx0915/Android-Dependecy-Tree-Diff-Viewer/issues"
},
"homepage": "https://github.com/dongx0915/Android-Dependecy-Tree-Diff-Viewer#readme",
"devDependencies": {
"jest": "^30.2.0",
"jest-html-reporter": "^4.3.0"
}
}