-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.32 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
{
"name": "@lxghtless/liscio-undici",
"version": "2.0.1",
"description": "A simple undici http client wrapper with interceptors.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"homepage": "https://lxghtless.github.io/liscio-undici/",
"repository": {
"type": "git",
"url": "git+https://github.com/lxghtless/liscio-undici.git"
},
"files": [
"lib"
],
"publishConfig": {
"cache": ".npm",
"access": "public"
},
"scripts": {
"lint": "eslint --fix \"lib/**/*.js\" \"test/**/*.test.js\"",
"pretest": "eslint \"lib/**/*.js\" \"test/**/*.test.js\"",
"test": "BROKKR_LOG_LEVEL=silent tap --no-check-coverage test/*.test.js",
"coverage": "tap --coverage-report=text-lcov | codecov --pipe --disable=gcov",
"test:types": "tsd",
"clean": "rimraf .nyc_output",
"install-husky": "husky install"
},
"keywords": [],
"author": "lxghtless",
"license": "ISC",
"dependencies": {
"@lxghtless/brokkr": "^0.1.0",
"undici": "^4.4.2"
},
"devDependencies": {
"@lxghtless/eslint-config-prettier": "^1.3.0",
"@types/node": "^16.6.1",
"codecov": "^3.8.3",
"husky": "^7.0.1",
"rimraf": "^3.0.2",
"sinon": "^11.1.2",
"tap": "^15.0.9",
"tsd": "^0.17.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"tsd": {
"directory": "test/types",
"compilerOptions": {
"esModuleInterop": true
}
}
}