-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
99 lines (99 loc) · 2.26 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "relax-client",
"version": "2.2.0",
"description": "A request helper to make building custom API clients simple",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "mocha",
"clean": "rm -rf dist",
"build": "tsc",
"watch": "tsc --watch",
"prepublishOnly": "npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tshelburne/relax-client.git"
},
"keywords": [
"api",
"client",
"rest",
"request",
"fetch"
],
"author": "Tim Shelburne <shelburt02@gmail.com> (https://github.com/tshelburne/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/tshelburne/relax-client/issues"
},
"homepage": "https://github.com/tshelburne/relax-client#readme",
"dependencies": {
"deepmerge": "^4.2.2",
"pako": "^1.0.11",
"qs": "^6.9.4"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"@types/chai": "^4.2.16",
"@types/chai-as-promised": "^7.1.3",
"@types/deepmerge": "^2.2.0",
"@types/jsdom-global": "^3.0.2",
"@types/mocha": "^8.2.2",
"@types/pako": "^1.0.1",
"@types/qs": "^6.9.6",
"@types/sinon": "^10.0.13",
"@types/sinon-chai": "^3.2.9",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"fetch-mock": "^9.10.7",
"isomorphic-fetch": "^3.0.0",
"isomorphic-form-data": "^2.0.0",
"jsdom": "^16.4.0",
"jsdom-global": "^3.0.2",
"mocha": "^10.2.0",
"mocha-clean": "^1.0.0",
"mock-local-storage": "^1.1.15",
"sinon": "^15.0.1",
"sinon-chai": "^3.7.0",
"spy-on-cookies": "^0.2.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"mocha": {
"require": [
"ts-node/register",
"mocha-clean",
"isomorphic-fetch",
"mock-local-storage",
"isomorphic-form-data"
],
"file": [
"./test/setup-chai.ts",
"./test/setup-fetch-mock.ts",
"./test/setup-jsdom.ts"
],
"recursive": true,
"extension": [
"ts"
]
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"modules": "auto"
}
]
],
"plugins": [
[
"@babel/plugin-transform-runtime",
{
"regenerator": true
}
]
]
}
}