-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.79 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.79 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": "ibutsu-client-ts",
"version": "0.0.0-development",
"description": "A TypeScript client for the Ibutsu API",
"license": "MIT",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/cjs/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
}
}
},
"scripts": {
"build": "tsc && tsc -p tsconfig.esm.json",
"prepack": "yarn build",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"integration:build": "tsc -p tsconfig.integration.json",
"integration:run": "node integration-test.js",
"integration": "yarn build && yarn integration:build && yarn integration:run",
"lint": "yarn lint:eslint && yarn format:check",
"lint:eslint": "eslint \"src/**/*.ts\"",
"lint:fix": "eslint --fix \"src/**/*.ts\" && yarn format",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/ibutsu/ibutsu-client-javascript.git"
},
"keywords": [
"ibutsu",
"testing",
"test-results",
"api-client",
"typescript"
],
"dependencies": {},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@types/jest": "^29.5.14",
"@types/node": "^24.10.0",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"jest": "^30.2.0",
"prettier": "^3.4.0",
"ts-jest": "^29.2.5",
"typescript": "^5.7.0",
"typescript-eslint": "^8.18.0"
},
"files": [
"dist",
"src",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=20.0.0"
}
}