-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.75 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
{
"name": "happy-http",
"version": "0.0.2",
"description": "Decorator based HTTP client for the browser.",
"main": "dist/happy-http.umd.js",
"module": "dist/happy-http.es5.js",
"typings": "dist/types/core/happy_http.d.ts",
"scripts": {
"husky": "husky install",
"build": "ts-node scripts/build.ts",
"build:declaration": "tsc --declaration —-declarationDir dist --emitDeclarationOnly src/index.ts",
"test": "jest --coverage"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{js,ts,jsx,tsx,scss,css,json,md}": [
"pretty-quick --staged"
],
"*.{js,ts,jsx,tsx}": [
"eslint --fix"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/iwfan/happy-http.git"
},
"keywords": [
"happy",
"happy-http",
"http",
"typescript",
"decorators"
],
"author": "iwfan <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/iwfan/happy-http#readme",
"bugs": {
"url": "https://github.com/iwfan/happy-http/issues"
},
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@types/glob": "^7.1.3",
"@types/jest": "^26.0.22",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"esbuild": "^0.11.15",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-prettier": "^3.4.0",
"fs-extra": "^9.1.0",
"glob": "^7.1.6",
"husky": "^6.0.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"ts-jest": "^26.5.5",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
}
}