-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.77 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.77 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@jmndao/auth-flow",
"version": "2.2.0",
"description": "Simple, clean authentication flow for client-side applications with automatic token management",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"readme.md",
"LICENSE"
],
"scripts": {
"build": "rollup -c",
"build:watch": "rollup -c -w",
"dev": "rollup -c -w",
"type-check": "tsc --noEmit",
"lint": "eslint src --ext .ts --fix",
"lint:check": "eslint src --ext .ts",
"format": "prettier --write \"src/**/*.{ts,js,json}\"",
"format:check": "prettier --check \"src/**/*.{ts,js,json}\"",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"clean": "rm -rf dist",
"verify:build": "node -e \"console.log('Build verification passed')\"",
"pre-commit": "npm run lint:check && npm run format:check && npm run type-check",
"prepublishOnly": "npm run clean && npm run type-check && npm run lint:check && npm run test && npm run build && npm run verify:build",
"release": "standard-version",
"release:patch": "npm run release -- --release-as patch",
"release:minor": "npm run release -- --release-as minor",
"release:major": "npm run release -- --release-as major",
"release:dry-run": "npm run release -- --dry-run",
"postrelease": "git push --follow-tags origin master && npm publish",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"keywords": [
"authentication",
"auth",
"jwt",
"token",
"refresh",
"client-side",
"typescript"
],
"author": {
"name": "Jonathan Moussa NDAO",
"email": "jmndao@gmail.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jmndao/auth-flow.git"
},
"bugs": {
"url": "https://github.com/jmndao/auth-flow/issues"
},
"homepage": "https://github.com/jmndao/auth-flow#readme",
"engines": {
"node": ">=16.0.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.5",
"@types/jest": "^29.5.8",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"conventional-changelog-cli": "^4.1.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.1.0",
"rollup": "^4.6.1",
"standard-version": "^9.5.0",
"ts-jest": "^29.1.1",
"tslib": "^2.6.2",
"typescript": "^5.3.2"
},
"exports": {
".": {
"import": "./dist/index.esm.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
}
}