-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.55 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.55 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "dash-licenses",
"version": "1.0.0",
"description": "Container wrapper for Eclipse Dash License Tool",
"main": "dist/document.js",
"types": "dist/document.d.ts",
"scripts": {
"clean": "rimraf dist/ *.tsbuildinfo",
"prebuild": "npm run clean",
"build": "webpack --mode production",
"build:dev": "webpack --mode development",
"build:watch": "webpack --mode development --watch",
"build:clean": "npm run clean && npm run build",
"dev": "ts-node src/document/index.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:unit": "jest --testPathPattern=src",
"test:e2e": "jest --testPathPattern=tests/e2e",
"lint": "eslint \"src/**/*.{ts,tsx}\" \"tests/**/*.{ts,tsx}\"",
"lint:fix": "eslint \"src/**/*.{ts,tsx}\" \"tests/**/*.{ts,tsx}\" --fix",
"header:check": "node header-check.js",
"header:fix": "node header-check.js --fix",
"header:verbose": "node header-check.js --verbose",
"type-check": "tsc --noEmit"
},
"devDependencies": {
"jest": "^29.7.0",
"eslint": "^8.55.0",
"eslint-plugin-notice": "^0.9.10",
"@types/jest": "^29.5.8",
"@types/node": "^20.10.0",
"supertest": "^6.3.3",
"typescript": "^5.9.2",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.0",
"ts-loader": "^9.5.1",
"webpack": "^5.90.0",
"webpack-cli": "^5.1.4",
"rimraf": "^5.0.0"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"collectCoverageFrom": [
"src/**/*.{js,ts}",
"!src/**/*.{test,spec}.{js,ts}",
"!**/node_modules/**"
],
"coverageDirectory": "coverage",
"coverageReporters": [
"text",
"lcov",
"html"
],
"testMatch": [
"**/__tests__/**/*.{test,spec}.{js,ts}",
"**/tests/**/*.{test,spec}.{js,ts}"
],
"setupFilesAfterEnv": [
"<rootDir>/tests/setup.ts"
],
"moduleFileExtensions": ["ts", "tsx", "js", "jsx", "json", "node"],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
}
},
"engines": {
"node": ">=20.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/che-incubator/dash-licenses.git"
},
"keywords": [
"license",
"dependencies",
"eclipse",
"dash",
"container"
],
"author": "Red Hat, Inc.",
"license": "EPL-2.0",
"bugs": {
"url": "https://github.com/che-incubator/dash-licenses/issues"
},
"homepage": "https://github.com/che-incubator/dash-licenses#readme"
}