-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
58 lines (58 loc) · 1.59 KB
/
package.json
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
{
"name": "@dlenroc/testrail",
"description": "TestRail API client with error handling and typing",
"version": "1.9.1",
"author": "Corneliu Duplachi",
"license": "MIT",
"homepage": "https://github.com/dlenroc/node-testrail-api",
"bugs": "https://github.com/dlenroc/node-testrail-api/issues",
"repository": "dlenroc/node-testrail-api",
"keywords": [
"testrail",
"api"
],
"files": [
"src",
"dist"
],
"types": "dist/TestRail.d.ts",
"main": "dist/TestRail.node.js",
"module": "dist/TestRail.node.mjs",
"browser": "dist/TestRail.browser.mjs",
"jsdelivr": "dist/TestRail.umd.js",
"unpkg": "dist/TestRail.umd.js",
"scripts": {
"prepare": "npm run build",
"build": "rollup --bundleConfigAsCjs -c && replace-in-file '/(\\.\\.\\/)+src/g' '../src' 'dist/*.map' --isRegex",
"test": "mocha -A -r ts-node/register test/**/*.ts"
},
"engines": {
"node": ">=10"
},
"dependencies": {
"form-data": "^4",
"node-fetch": "^2.6.4"
},
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"@rollup/plugin-terser": "^0.4.1",
"@rollup/plugin-typescript": "^11.1.0",
"@types/chai": "^4.3.5",
"@types/chai-as-promised": "^7.1.5",
"@types/deasync": "^0.1.2",
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.1",
"@types/node": "*",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"glob": "^10.2.3",
"intermock": "^0.2.5",
"mocha": "^10.2.0",
"nock": "^13.3.1",
"replace-in-file": "^6.3.5",
"rollup": "^3.21.6",
"rollup-plugin-dts": "^5.3.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}