-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.68 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
{
"name": "@warrantdev/react-warrant-js",
"version": "2.1.0",
"description": "React components for Warrant",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist/**/*",
"README.md"
],
"scripts": {
"build": "webpack --mode production --config webpack.config.js",
"build-local": "npm run build && npm pack",
"prepare": "npm run build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/warrant-dev/react-warrant-js.git"
},
"keywords": [
"warrant",
"authorization",
"rbac",
"role based access control",
"access control",
"react"
],
"author": "Warrant <[email protected]> (https://warrant.dev)",
"license": "MIT",
"bugs": {
"url": "https://github.com/warrant-dev/react-warrant-js/issues"
},
"homepage": "https://github.com/warrant-dev/react-warrant-js#readme",
"devDependencies": {
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.2.5",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@warrantdev/warrant-node": "^3.2.0",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"ts-jest": "^29.0.4",
"ts-loader": "^9.4.2",
"typescript": "^4.9.4",
"webpack": "^5.40.0",
"webpack-cli": "^4.7.2",
"xmlhttprequest": "^1.8.0"
},
"peerDependencies": {
"@warrantdev/warrant-js": "^3.3.0",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
}
}