-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.91 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.91 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
{
"name": "@lichtblick/test-builders",
"version": "1.0.1",
"description": "Test utilities and builders for Lichtblick projects",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"clean": "rm -rf dist",
"prepublishOnly": "yarn clean && yarn build",
"test": "jest",
"lint": "eslint --report-unused-disable-directives --fix .",
"lint:ci": "eslint --report-unused-disable-directives .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"validate": "yarn lint:ci && yarn format:check && yarn test && yarn validate:package",
"validate:package": "npm pack --dry-run"
},
"keywords": [
"testing",
"builders",
"test-utils",
"lichtblick"
],
"author": "Bayerische Motoren Werke Aktiengesellschaft (BMW AG)",
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "https://github.com/lichtblick-suite/test-builders.git"
},
"peerDependencies": {
"lodash-es": "^4.17.21"
},
"dependencies": {
"randomstring": "^1.3.0"
},
"devDependencies": {
"@lichtblick/eslint-plugin": "^1.0.4",
"@lichtblick/tsconfig": "^1.0.2",
"@types/jest": "^30.0.0",
"@types/lodash-es": "^4.17.0",
"@types/randomstring": "^1.1.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-es": "^4.1.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^30.2.0",
"jest-util": "^30.2.0",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"prettier": "^3.0.0",
"ts-jest": "^29.4.6",
"tslib": "^2.8.1",
"tsup": "^8.5.1",
"typescript": "^5.0.0"
},
"packageManager": "yarn@4.12.0"
}