-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 939 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 939 Bytes
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
{
"name": "@dlenroc/testrail",
"version": "2.0.0",
"description": "TestRail API client with error handling and typing",
"keywords": [
"api",
"testrail"
],
"license": "MIT",
"author": "Corneliu Duplachi",
"repository": "dlenroc/node-testrail-api",
"files": [
"dist"
],
"type": "module",
"sideEffects": false,
"exports": {
"types": "./dist/TestRail.d.ts",
"default": "./dist/TestRail.js"
},
"scripts": {
"prepare": "tsdown --no-config --platform neutral ./src/TestRail.ts",
"test": "node --test"
},
"devDependencies": {
"@faker-js/faker": "^10.4.0",
"@tsconfig/strictest": "^2.0.8",
"@types/chai": "^5.2.3",
"@types/chai-as-promised": "^8.0.2",
"@types/node": "^25.5.0",
"chai": "^6.2.2",
"chai-as-promised": "^8.0.2",
"glob": "^13.0.6",
"intermock": "^0.2.5",
"nock": "^14.0.11",
"tsdown": "^0.21.7",
"typescript": "^6.0.2"
}
}