-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.48 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
{
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"eslint": "^8.23.0",
"eslint-config-standard-with-typescript": "^22.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.0.1",
"eslint-plugin-n": "^15.2.5",
"eslint-plugin-promise": "^6.0.1",
"git-branch-is": "^4.0.0",
"husky": "^8.0.1",
"jest": "^29.0.1",
"jest-coverage-badges": "^1.1.2",
"lint-staged": "^13.0.3",
"typescript": "^4.8.2"
},
"name": "hayya",
"description": "A fast config HTTP requests testing tool for busy people",
"version": "0.1.1",
"directories": {
"lib": "lib"
},
"bin": {
"hayya": "index.js"
},
"scripts": {
"test:unit": "jest tests/unit --coverage",
"test:acceptance": "jest tests/acceptance",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/burawi/hayya.git"
},
"keywords": [
"HTTP-client",
"tests",
"quick"
],
"author": "Burawi",
"license": "ISC",
"bugs": {
"url": "https://github.com/burawi/hayya/issues"
},
"homepage": "https://github.com/burawi/hayya#readme",
"dependencies": {
"axios": "^0.27.2",
"colors": "^1.4.0",
"json5": "^2.2.1",
"tatabot": "^1.0.3"
},
"jest": {
"coverageReporters": [
"json-summary"
],
"coverageThreshold": {
"global": {
"lines": 80
}
}
}
}