-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
88 lines (88 loc) · 2.06 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
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
{
"name": "testlink-xmlrpc",
"version": "3.0.0",
"description": "Connect to TestLink using XML-RPC API",
"author": "Luis Zurro <[email protected]> (https://pistachitos.com)",
"homepage": "https://github.com/Nyaran/testlink-xmlrpc#readme",
"repository": {
"type": "git",
"url": "git://github.com/Nyaran/testlink-xmlrpc.git"
},
"bugs": {
"url": "https://github.com/Nyaran/testlink-xmlrpc/issues"
},
"funding": [
{
"type": "ko-fi",
"url": "https://ko-fi.com/nyaran"
},
{
"type": "Buy me a coffee",
"url": "https://www.buymeacoffee.com/nyaran"
}
],
"license": "GPL-3.0-or-later",
"keywords": [
"testlink",
"api",
"test",
"testsuite",
"testcase",
"xmlrpc",
"connect",
"testlink-api",
"testlink-connect",
"xml-rpc"
],
"type": "module",
"exports": "./build/index.js",
"types": "./build/index.d.ts",
"scripts": {
"prepare": "npm run build",
"build": "run-s clean compile",
"clean": "rimraf ./build ./nyc_output",
"compile": "tsc",
"compile:watch": "tsc --watch",
"lint": "npm run lint:es",
"lint:es": "eslint src/ test/",
"lint:fix": "eslint src/ --fix",
"test": "run-s -c -n lint test:unit:cov",
"test:unit": "cross-env NODE_ENV=test mocha --recursive",
"test:unit:cov": "c8 npm run test:unit"
},
"dependencies": {
"xmlrpc": "1.3.2"
},
"devDependencies": {
"@eslint/js": "9.18.0",
"@istanbuljs/nyc-config-typescript": "1.0.2",
"@pollyjs/adapter-node-http": "6.0.6",
"@pollyjs/core": "6.0.6",
"@pollyjs/persister-fs": "6.0.6",
"@types/chai": "5.0.1",
"@types/chai-as-promised": "8.0.1",
"@types/eslint__js": "8.42.3",
"@types/mocha": "10.0.10",
"@types/xmlrpc": "1.3.10",
"c8": "10.1.3",
"chai": "5.1.2",
"chai-as-promised": "8.0.1",
"cross-env": "^7.0.3",
"eslint": "9.18.0",
"eslint-plugin-chai-friendly": "1.0.1",
"eslint-plugin-promise": "7.2.1",
"mocha": "11.0.1",
"npm-run-all": "4.1.5",
"ts-node": "10.9.2",
"typescript": "5.7.3",
"typescript-eslint": "8.20.0"
},
"directories": {
"lib": "./src",
"test": "./test"
},
"files": [
"/build",
"/CHANGELOG.md"
]
}