-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.74 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@4us-dev/oidc",
"version": "0.0.1",
"description": "Utility classes to assist developers during software development",
"author": "Clairton Luz <clairton.c.l@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/4us-dev/oidc#readme",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "rimraf ./lib && tsc",
"docs": "typedoc --out docs --mode modules",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"lint": "eslint . --ext .ts",
"test": "jest --watchAll=false",
"coverage": "jest --coverage --coverageReporters=lcov --watchAll=false",
"prepare": "npm run build && npm test"
},
"devDependencies": {
"@types/jest": "^26.0.4",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jest": "^24.0.1",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"jest": "^26.1.0",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"ts-jest": "^26.1.1",
"typedoc": "^0.19.1",
"typescript": "^4.0.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/4us-dev/oidc.git"
},
"bugs": {
"url": "https://github.com/4us-dev/oidc/issues"
},
"keywords": [
"OAuth",
"OAuth2",
"OIDC",
"OpenID",
"OpenID Connect",
"SPA",
"4us",
"dev",
"developer",
"developers",
"browser",
"node",
"Node.JS",
"react",
"angular",
"typescript",
"javascript"
],
"husky": {
"hooks": {
"pre-commit": "npm run prettier-format && npm run lint"
}
},
"dependencies": {
"@4us-dev/crypto": "0.0.1",
"@4us-dev/utils": "0.0.5"
}
}