-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.09 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
{
"name": "@publicissapient/authorizationutil",
"version": "1.4.6",
"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": "^28.1.6",
"jest": "^28.1.3",
"jest-environment-jsdom": "^29.0.2",
"lefthook": "^1.0.5",
"rollup": "^4.9.2",
"prettier": "3.4.2",
"ts-jest": "^28.0.7",
"tslib": "^2.4.0",
"typescript": "^5.0.4"
},
"files": [
"dist/**/*.js"
]
}