This repository has been archived by the owner on Jan 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.74 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
{
"name": "@cobuildlab/auth0-utils",
"version": "0.8.0",
"description": "This is package to deal with common scenarios working with auth0 platform",
"main": "lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"test": "jest --collect-coverage --passWithNoTests",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "eslint --fix"
},
"files": [
"lib/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cobuildlab/auth0-utils.git"
},
"keywords": [
"8base",
"auth0",
"utils"
],
"author": "Ragomez33",
"license": "ISC",
"bugs": {
"url": "https://github.com/cobuildlab/auth0-utils/issues"
},
"homepage": "https://github.com/cobuildlab/auth0-utils#readme",
"husky": {
"hooks": {
"pre-commit": "npx lint-staged",
"pre-push:": "npm test"
}
},
"lint-staged": {
"*.{js,ts}": [
"prettier --write",
"eslint --fix"
]
},
"dependencies": {
"@types/node-fetch": "^2.5.10",
"nanoid": "^3.1.22",
"node-fetch": "^2.6.6"
},
"peerDependencies": {
"node-fetch": "^2.6.6"
},
"devDependencies": {
"@babel/core": "^7.13.16",
"@babel/preset-env": "^7.13.15",
"@babel/preset-typescript": "^7.13.0",
"@types/jest": "^26.0.22",
"@types/node": "^14.14.41",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"babel-jest": "^26.6.3",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-jest": "^24.3.5",
"eslint-plugin-jsdoc": "^32.3.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"ts-jest": "^26.5.5",
"typescript": "^4.2.4"
}
}