-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
72 lines (72 loc) · 1.64 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
68
69
70
71
72
{
"name": "klg-request",
"version": "2.2.4",
"description": "http request util",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "tslint -c tslint.json 'src/**/*.ts' --fix",
"build": "tsc -d -p ./",
"test": "jest",
"cov": "jest --coverage --coverageDirectory=coverage",
"prepublishOnly": "npm run build",
"pretest": "npm run lint"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "/src/.*\\.(test|spec).(ts|tsx|js)$",
"collectCoverageFrom": [
"src/**/*.{js,jsx,tsx,ts}",
"!**/node_modules/**",
"!**/vendor/**"
],
"coverageReporters": [
"json",
"lcov"
]
},
"repository": {
"type": "git",
"url": "https://github.com/kaolalicai/klg-request"
},
"keywords": [
"klg"
],
"author": "nick",
"license": "MIT",
"engines": {
"node": ">=8.9.0"
},
"dependencies": {
"@types/superagent": "^3.5.7",
"klg-logger": "^1.0.4",
"klg-retry": "^1.0.2",
"superagent": "^3.8.2",
"tracer": "^0.8.12"
},
"devDependencies": {
"@types/jest": "^22.2.0",
"@types/nock": "^9.1.2",
"@types/power-assert": "^1.4.29",
"jest": "^22.4.2",
"mockgoose": "^7.3.5",
"mongoose": "^5.0.12",
"nock": "^9.2.3",
"power-assert": "^1.4.4",
"source-map-support": "^0.5.3",
"ts-jest": "^22.4.2",
"ts-node": "^5.0.1",
"tslint": "^5.9.1",
"tslint-config-klg": "^1.0.4",
"typescript": "^2.7.2",
"webstorm-disable-index": "^1.2.0"
}
}