-
Notifications
You must be signed in to change notification settings - Fork 309
/
package.json
86 lines (86 loc) · 2.31 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
{
"name": "auth0",
"version": "4.13.0",
"description": "SDK for Auth0 API v2",
"main": "dist/cjs/index.js",
"types": "dist/cjs/index.d.ts",
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
}
}
},
"sideEffects": false,
"files": [
"dist"
],
"scripts": {
"prebuild": "rm -rf dist",
"build": "tsc -b ./tsconfig.cjs.json ./tsconfig.esm.json && echo '{\"type\": \"commonjs\"}'> dist/cjs/package.json",
"docs": "typedoc --options typedoc.cjs",
"test": "NODE_OPTIONS='--experimental-vm-modules --no-warnings' jest",
"test:ci": "c8 npm run test -- --maxWorkers=1",
"precommit": "pretty-quick --staged",
"lint": "eslint ./src ./test --ext ts",
"lint:package": "publint",
"start:playground": "node --experimental-specifier-resolution=node --no-warnings --loader ts-node/esm playground/index.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/auth0/node-auth0"
},
"engines": {
"node": ">=18"
},
"keywords": [
"auth0",
"api"
],
"author": "Auth0",
"license": "MIT",
"bugs": {
"url": "https://github.com/auth0/node-auth0/issues"
},
"homepage": "https://github.com/auth0/node-auth0",
"dependencies": {
"jose": "^4.13.2",
"undici-types": "^6.15.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^16.18.37",
"@types/node-fetch": "^2.6.3",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"c8": "^7.13.0",
"commander": "^10.0.1",
"dotenv": "^16.0.3",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"husky": "^3.0.1",
"jest": "^29.5.0",
"nock": "^13.2.7",
"node-fetch": "^3.3.1",
"prettier": "^2.8.7",
"pretty-quick": "^1.11.1",
"publint": "^0.2.2",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typedoc": "^0.24.6",
"typescript": "4.9.5",
"undici": "^6.15.0"
}
}