-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.24 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
{
"name": "@cadolabs/auth-http-provider",
"version": "2.4.2",
"description": "HTTP Provider that works with JWT auth",
"repository": "https://github.com/Cado-Labs/auth-http-provider",
"homepage": "https://github.com/Cado-Labs/auth-http-provider",
"author": "Aleksei Bespalov <nulldefiner@gmail.com>",
"license": "MIT",
"main": "dist/auth-http-provider.cjs.js",
"module": "dist/auth-http-provider.es.js",
"scripts": {
"build": "rollup -c",
"lint": "eslint .",
"prepublishOnly": "yarn build",
"test": "jest",
"test:coverage": "jest --coverage"
},
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.14.8",
"@babel/eslint-parser": "^7.16.3",
"@babel/preset-env": "^7.14.8",
"@babel/runtime": "^7.16.3",
"@rollup/plugin-babel": "^6.0.2",
"babel-jest": "^27.0.6",
"coveralls": "^3.1.1",
"eslint": "^8.3.0",
"eslint-config-umbrellio": "^5.0.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^25.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prefer-object-spread": "^1.2.1",
"eslint-plugin-promise": "^5.1.0",
"jest": "^27.0.6",
"jest-fetch-mock": "^3.0.3",
"rollup": "^2.60.1"
},
"dependencies": {
"qs": "^6.10.2"
}
}