-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.03 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
{
"name": "react-access-boundary",
"version": "2.1.4",
"description": "A library for validating user permissions from UI layers",
"author": "Sonjoy Datta <[email protected]>",
"license": "MIT",
"repository": "sonjoydatta/react-access-boundary",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"engines": {
"node": ">=14",
"npm": ">=8"
},
"scripts": {
"build": "rollup -c",
"ci": "yarn --frozen-lockfile"
},
"devDependencies": {
"@types/react": "^17.0.34",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"babel-core": "^6.26.3",
"babel-runtime": "^6.26.0",
"eslint": "^8.2.0",
"eslint-plugin-react": "^7.27.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup": "^2.60.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"typescript": "^4.4.4"
},
"files": [
"dist"
],
"keywords": [
"react",
"typescript",
"npm",
"access-control",
"user-permission",
"authorization"
]
}