-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
108 lines (108 loc) · 3.28 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "@descope/node-sdk",
"version": "1.6.12",
"description": "Node.js library used to integrate with Descope",
"typings": "./dist/index.d.ts",
"main": "dist/cjs/index.cjs.js",
"module": "./dist/index.esm.js",
"types": "dist/index.d.ts",
"exports": {
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/cjs/index.cjs.js"
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.esm.js"
}
},
"type": "module",
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "git://github.com/descope/node-sdk.git"
},
"engines": {
"node": ">= 12.0.0"
},
"scripts": {
"build": "rimraf dist && rollup -c",
"prepare": "husky install",
"quick": "npm i && npm run build && cd examples/es6/ && npm i && npm run generateCerts && npm start",
"format": "prettier . --write --ignore-path .gitignore",
"format-check": "prettier . --check --ignore-path .gitignore",
"format-lint": "pretty-quick --staged --ignore-path .gitignore && lint-staged",
"size": "npm run build && size-limit",
"lint": "eslint lib/**/*.ts --fix",
"leaks": "bash ./scripts/gitleaks/gitleaks.sh",
"test": "jest --forceExit --coverage --ci --detectOpenHandles .*test.*",
"prepublishOnly": "npm run build"
},
"lint-staged": {
"+(src|lib)/**/*.{js,ts,jsx,tsx}": [
"npm run lint"
]
},
"author": "Descope",
"bugs": {
"url": "git://github.com/descope/node-sdk/issues"
},
"license": "MIT",
"keywords": [
"descope",
"authentication"
],
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-replace": "^5.0.0",
"@rollup/plugin-typescript": "^8.3.0",
"@size-limit/preset-small-lib": "^11.0.0",
"@types/jest": "^29.0.0",
"@types/jsonwebtoken": "^9.0.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.27.0",
"eslint": "^8.15.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.0.0",
"eslint-plugin-jest-dom": "^5.0.0",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-no-only-tests": "^3.0.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.1",
"jest": "^29.0.0",
"jsdoc": "^4.0.0",
"lint-staged": "^15.0.0",
"nock": "^13.2.4",
"prettier": "^2.8.8",
"pretty-quick": "^3.1.3",
"rollup": "^2.79.2",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-browsersync": "^1.3.3",
"rollup-plugin-define": "^1.0.1",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-esbuild": "^6.0.0",
"rollup-plugin-inject-process-env": "^1.3.1",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^29.0.0",
"ts-node": "^10.8.2",
"typescript": "^4.6.4"
},
"dependencies": {
"@descope/core-js-sdk": "2.31.0",
"cross-fetch": "^4.0.0",
"jose": "5.2.2",
"tslib": "^2.0.0"
}
}