-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
64 lines (64 loc) · 1.46 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
{
"author": {
"name": "Dobes Vandermeer",
"email": "[email protected]"
},
"name": "axios-oauth-1.0a",
"version": "0.4.0",
"description": "Easily add OAuth 1.0a signing to your axios client",
"sideEffects": false,
"license": "MIT",
"homepage": "https://github.com/dobesv/axios-oauth-1.0a",
"repository": {
"type": "git",
"url": "https://github.com/dobesv/axios-oauth-1.0a.git"
},
"keywords": [
"oauth",
"axios"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"prepare": "yarn build",
"test": "yarn build && yarn jest"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"devDependencies": {
"@babel/core": "7.26.10",
"@babel/preset-env": "7.26.9",
"@babel/preset-typescript": "7.26.0",
"@types/auth-header": "1.0.6",
"@types/jest": "29.5.14",
"@types/node": "^22.13.10",
"auth-header": "1.0.0",
"axios": "1.8.3",
"axios-mock-adapter": "2.1.0",
"jest": "^29.7.0",
"prettier": "3.5.3",
"tsup": "8.4.0",
"typescript": "^5.8.2"
},
"peerDependencies": {
"axios": ">=0.21.0"
},
"dependencies": {
"oauth-sign": "^0.9.0"
},
"jest": {
"testPathIgnorePatterns": [
"/.yarn/",
"/node_modules/",
"/dist/"
]
},
"packageManager": "[email protected]"
}