-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 1.46 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": "@luckbox/http-adapter-factory",
"version": "1.4.0",
"description": "Easy to use http adapter factory with support for GET, POST, DELETE, PATCH and PUT",
"author": "Luckbox",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/LuckboxGG/http-adapter-factory.git"
},
"engines": {
"node": ">=12.14"
},
"lint-staged": {
"*.ts": [
"eslint --cache --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"got": "^11.8.1",
"qs": "^6.9.4"
},
"devDependencies": {
"typescript": "^4.1.3",
"@luckbox/eslint-rules": "4.0.4",
"@types/jest": "^26.0.3",
"@types/node": "^14.0.14",
"@types/qs": "^6.9.5",
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^4.0.0",
"coveralls": "^3.1.0",
"eslint": "^7.2.0",
"eslint-plugin-no-only-tests": "^2.4.0",
"eslint-plugin-node": "^11.1.0",
"husky": "^4.2.5",
"jest": "^26.1.0",
"lint-staged": "^10.2.11",
"ts-jest": "^26.1.1"
},
"scripts": {
"build": "rm -rf dist/ && tsc -d",
"lint": "eslint \"**/*.ts\" --cache",
"lint:fix": "npm run lint -- --fix",
"test": "jest --collectCoverage",
"test:watch": "jest --watchAll",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"precommit": "lint-staged",
"prepublishOnly": "npm run build"
},
"keywords": [],
"license": "ISC"
}