This repository has been archived by the owner on Oct 11, 2023. It is now read-only.
forked from nestjsx/nest-access-control
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.68 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "nest-access-control",
"version": "3.0.0",
"description": "Access Control Module For Nestjs Framework",
"main": "index.js",
"scripts": {
"test": "jest --notify --config=jest.json",
"test:watch": "jest --watch --config=jest.json",
"test:coverage": "jest --config=jest.json --coverage --coverageDirectory=coverage",
"build": "gulp build && gulp move",
"build:lib": "gulp build --dist lib && cp -rf package.json lib && cp -rf README.md lib",
"npm:publish": "cd lib && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nestjsx/nest-access-control.git"
},
"keywords": [
"nestjs",
"access",
"roles",
"permissions",
"nestjs modules",
"addons"
],
"author": "Shady Khalifa <[email protected]>",
"license": "MIT",
"devDependencies": {
"@nestjs/common": "^7.6.18",
"@nestjs/core": "^7.6.18",
"@nestjs/testing": "^7.6.18",
"@types/jest": "^27.4.1",
"@types/node": "^10.1.2",
"coveralls": "^3.0.1",
"gulp": "^4.0.0",
"gulp-sequence": "^1.0.0",
"gulp-typescript": "^5.0.1",
"jest": "^27.5.1",
"node-notifier": "^10.0.1",
"reflect-metadata": "^0.1.12",
"rxjs": "^6.0.0",
"ts-jest": "^27.1.3",
"ts-node": "^10.6.0",
"typescript": "^4.6.2"
},
"bugs": {
"url": "https://github.com/nestjsx/nest-access-control/issues"
},
"homepage": "https://github.com/nestjsx/nest-access-control#readme",
"dependencies": {
"accesscontrol": "^2.2.1"
},
"peerDependencies": {
"@nestjs/graphql": "^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0 || ^12.0.0"
},
"peerDependenciesMeta": {
"@nestjs/graphql": {
"optional": true
}
}
}