-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.29 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
{
"name": "@warrantdev/warrant-node",
"version": "6.3.0",
"description": "Warrant API Wrapper for Node.js clients",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist/**/*",
"README.md"
],
"scripts": {
"build": "tsc",
"build-local": "npm run build && npm pack",
"prepare": "npm run build",
"test": "npm run build && mocha --require ts-node/register test/**/*.spec.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/warrant-dev/warrant-node.git"
},
"keywords": [
"warrant",
"authorization",
"rbac",
"role based access control",
"access control"
],
"author": "Warrant <hello@warrant.dev> (https://warrant.dev)",
"license": "MIT",
"bugs": {
"url": "https://github.com/warrant-dev/warrant-node/issues"
},
"homepage": "https://github.com/warrant-dev/warrant-node#readme",
"engines": {
"node": ">=18.13.0"
},
"devDependencies": {
"@types/chai": "^4.3.9",
"@types/mocha": "^10.0.3",
"@types/node": "^18.13.0",
"chai": "^4.3.10",
"mocha": "^10.2.0",
"ts-node": "^10.9.1",
"typescript": "^4.3.2",
"undici": "^6.0.1"
}
}