-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.34 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.34 KB
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
{
"name": "quoti-auth",
"version": "2.0.0",
"description": "library that helps you implement Quoti's Authentication and Authorization APIs in your project",
"main": "src/quotiauth.js",
"types": "types/quotiauth.d.ts",
"scripts": {
"test": "run(){ NODE_ENV=test mocha --inspect \"./e2e/index.spec.mjs\"; }; run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/byndcloud/quoti-auth.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/byndcloud/quoti-auth/issues"
},
"engines": {
"node": ">=14 <=20"
},
"homepage": "https://github.com/byndcloud/quoti-auth#readme",
"dependencies": {
"axios": "^1.6.8",
"axios-retry": "^3.9.1",
"lodash": "^4.17.21",
"type-check": "^0.4.0"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/eslint-parser": "^7.15.8",
"@types/express": "^4.17.13",
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"eslint": "^8.41.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-mocha": "^10.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"express": "^4.18.3",
"mocha": "^10.3.0",
"prettier": "^2.6.0",
"prettier-standard": "^15.0.1",
"typescript": "^4.7.4"
}
}