-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 951 Bytes
/
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": "a-seal",
"version": "2.1.3",
"description": "Access Control Library (ACL)",
"main": "build/index.js",
"types": "build/index.d.ts",
"type": "module",
"scripts": {
"build": "tsc",
"test": "vitest --globals=true"
},
"repository": {
"type": "git",
"url": "https://github.com/philmander/a-seal.git"
},
"keywords": [
"acl",
"access",
"control",
"list",
"lists",
"permissions",
"security",
"seal"
],
"author": "Phil Mander",
"license": "MIT",
"bugs": {
"url": "https://github.com/philmander/a-seal/issues"
},
"homepage": "https://github.com/philmander/a-seal",
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.10.4",
"jasmine": "^2.4.1",
"typescript": "^5.3.3",
"vitest": "^1.0.4"
},
"peerDependencies": {
"express": ">=4"
},
"peerDependenciesMeta": {
"express": {
"optional": true
}
}
}