-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.54 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.54 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
{
"name": "@globus/react-auth-context",
"version": "0.4.0",
"description": "A React context for integrating Globus Auth into your application using the Globus JavaScript SDK",
"repository": {
"type": "git",
"url": "git+https://github.com/globus/react-auth-context.git"
},
"main": "dist/umd/index.js",
"types": "dist/esm/index.d.ts",
"exports": {
".": {
"types": "./dist/esm/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/umd/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"scripts": {
"build": "node scripts/build.js && npm run build:types",
"build:types": "tsc --emitDeclarationOnly",
"test": "jest",
"docs": "npx typedoc"
},
"author": "Joe Bottigliero",
"license": "Apache-2.0",
"peerDependencies": {
"@globus/sdk": ">=5.4.0 || >=6.0.0",
"react": ">=18",
"react-dom": ">=18"
},
"devDependencies": {
"@globus/sdk": "^6.2.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@tsconfig/create-react-app": "^2.0.10",
"@types/jest": "^30.0.0",
"@types/react": "^18.3.27",
"@types/react-dom": "^18.3.7",
"esbuild": "^0.27.1",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.3.0",
"jest-location-mock": "^3.0.0",
"prettier": "^3.7.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"ts-jest": "^29.4.6",
"typedoc": "^0.28.15",
"typedoc-plugin-markdown": "^4.6.1",
"typescript": "^5.9.3"
}
}