-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.09 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.09 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
{
"name": "@publicissapient/authorizationutil",
"version": "1.4.8",
"description": "Simplistic authorization management - alternative to heavy (though robust) solutions",
"main": "dist/index.js",
"type": "module",
"scripts": {
"bundle": "rollup -c rollup.config.js",
"test": "npx jest '([a-z])*.unit.spec.ts'",
"test-performance": "npx jest '([a-z])*.perf.spec.ts'",
"test-ci": "NODE_OPTIONS=--experimental-vm-modules npx jest --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/PublicisSapient/authorization-util.git"
},
"keywords": [
"auth",
"authorization",
"permissions",
"RBAC"
],
"author": "Joe Carpenito",
"license": "MIT",
"devDependencies": {
"@babel/preset-typescript": "^7.18.6",
"@rollup/plugin-typescript": "^12.1.1",
"@types/jest": "^30.0.0",
"jest": "^30.0.3",
"jest-environment-jsdom": "^30.0.0",
"lefthook": "^1.0.5",
"rollup": "^4.9.2",
"prettier": "3.6.2",
"ts-jest": "^29.3.2",
"tslib": "^2.4.0",
"typescript": "^5.0.4"
},
"files": [
"dist/**/*.js"
]
}