-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.47 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.47 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
{
"name": "browser-user-session",
"version": "1.0.5",
"description": "A lightweight package that provides helpers to manage user session.",
"author": "Aurélien Manteaux <amanteaux@coreoz.com> (https://coreoz.com)",
"contributors": [
{
"name": "Vincent Dubois"
}
],
"repository": "https://github.com/Coreoz/browser-user-session",
"homepage": "https://github.com/Coreoz/browser-user-session",
"license": "Apache-2.0",
"keywords": [
"session",
"jwt"
],
"scripts": {
"build": "yarn build:cjs && yarn run build:esm",
"build:cjs": "ttsc --module commonjs --outDir build/cjs -p tsconfig.json",
"build:esm": "ttsc --module esnext --outDir build/esm -p tsconfig.json",
"clean": "rm -rf build",
"typescript": "tsc --noEmit --outDir build/esm -p tsconfig.json",
"eslint": "eslint src --ext .ts",
"prepare-release": "yarn clean && yarn typescript && yarn eslint && yarn jest && yarn build",
"release": "release-it"
},
"main": "build/cjs/index.js",
"typings": "build/esm/index.d.ts",
"module": "build/esm/index.js",
"engines": {
"node": ">=10"
},
"sideEffects": false,
"dependencies": {
"js-base64": "^3.7.5"
},
"peerDependencies": {
"micro-observables": "^1.7.2",
"plume-ts-di": "1.2.4",
"simple-http-rest-client": "^2.1.0",
"simple-job-scheduler": "^1.1.2",
"simple-logging-system": "^1.1.0"
},
"devDependencies": {
"@types/jest": "^29.5.2",
"@types/node": "^18.11.17",
"@types/node-fetch": "2",
"@types/react": "^18.0.26",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"@wessberg/di-compiler": "^3.2.0",
"eslint": "^8.12.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.1.4",
"eslint-plugin-import": "^2.25.4",
"jest": "^29.5.0",
"jest-config": "^29.1.0",
"micro-observables": "^1.7.2",
"node-fetch": "2",
"plume-ts-di": "1.2.4",
"react": ">=16.8.0",
"release-it": "^15.1.0",
"simple-http-rest-client": "^2.0.2",
"simple-job-scheduler": "^1.1.2",
"simple-logging-system": "^1.1.0",
"source-map-support": "^0.5.21",
"ts-jest": "^29.1.0",
"ts-node": "^10.7.0",
"ts-transformer-classname": "^2.0.0",
"ttypescript": "^1.5.12",
"typescript": "^4.6.3"
},
"files": [
"build/**/*.*"
],
"release-it": {
"hooks": {
"before:init": [
"yarn prepare-release"
]
}
},
"packageManager": "yarn@3.6.0"
}