-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 loc) · 1.26 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
{
"name": "testrail-js-api",
"version": "0.2.0",
"description": "Library exposing TestRail API",
"main": "lib/index.js",
"files": [
"/lib"
],
"typings": "lib/index.d.ts",
"engines": {
"node": ">=10.13"
},
"scripts": {
"build": "tsc",
"lint": "eslint src tests --ext .js,.ts",
"test": "jest",
"verify": "npm run build && npm run lint && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DamianOsipiuk/testrail-api.git"
},
"keywords": [
"testrail",
"api"
],
"author": "Damian Osipiuk",
"license": "MIT",
"bugs": {
"url": "https://github.com/DamianOsipiuk/testrail-api/issues"
},
"homepage": "https://github.com/DamianOsipiuk/testrail-api#readme",
"dependencies": {
"form-data": "^4.0.0",
"node-fetch": "^2.6.7"
},
"devDependencies": {
"@types/jest": "^29.1.1",
"@types/node": "^16.11.62",
"@types/node-fetch": "^2.6.2",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.1.2",
"prettier": "^2.7.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}