-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
82 lines (82 loc) · 1.87 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
73
74
75
76
77
78
79
80
81
82
{
"name": "trae",
"version": "1.4.2",
"description": "Fetch based HTTP client",
"main": "trae.cjs.production.min.js",
"module": "dist/trae.esm.js",
"unpkg": "trae.umd.production.min.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsdx build --tsconfig tsconfig.build.json --format cjs,esm,umd",
"test": "tsdx test --coverage",
"test:watch": "tsdx test --watch",
"lint": "tsdx lint --fix",
"prepare": "tsdx build",
"ts:check": "tsc --watch"
},
"engines": {
"node": ">=10"
},
"dependencies": {
"query-string": "^6.13.6"
},
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/connect": "^3.4.33",
"@types/jest": "^26.0.15",
"@types/node-fetch": "^2.5.5",
"@types/query-string": "^6.3.0",
"body-parser": "^1.19.0",
"connect": "^3.7.0",
"coveralls": "^3.0.9",
"fetch-mock": "^9.10.7",
"http-shutdown": "^1.2.2",
"husky": "^4.3.0",
"nock": "^13.0.4",
"node-fetch": "^2.6.1",
"np": "^6.5.0",
"rollup-plugin-filesize": "^6.2.1",
"tsdx": "^0.13.3",
"tslib": "^2.0.3",
"typescript": "^3.8.3"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": true,
"arrowParens": "always",
"proseWrap": "always"
},
"keywords": [
"fetch",
"http",
"request",
"api"
],
"contributors": [
"gillchristian <[email protected]>",
"ndelvalle <[email protected]>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/huemul/trae.git"
},
"bugs": {
"url": "https://github.com/huemul/trae/issues"
},
"homepage": "https://github.com/huemul/trae#readme"
}