-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.24 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
{
"name": "@warrantdev/warrant-js",
"version": "3.4.0",
"description": "JavaScript Library to Use Warrant in Client Applications",
"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": "npm run build && mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/warrant-dev/warrant-js.git"
},
"keywords": [
"warrant",
"authorization",
"rbac",
"role based access control",
"access control"
],
"author": "Warrant <[email protected]> (https://warrant.dev)",
"license": "MIT",
"bugs": {
"url": "https://github.com/warrant-dev/warrant-js/issues"
},
"homepage": "https://github.com/warrant-dev/warrant-js#readme",
"devDependencies": {
"@warrantdev/warrant-node": "^3.2.0",
"mocha": "^10.2.0",
"ts-loader": "^9.2.3",
"typescript": "^4.3.4",
"webpack": "^5.41.1",
"webpack-cli": "^4.7.2",
"xmlhttprequest": "^1.8.0"
}
}