-
Notifications
You must be signed in to change notification settings - Fork 77
/
package.json
62 lines (62 loc) · 1.71 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
62
{
"name": "nest-access-control",
"version": "3.1.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": "^10.1.3",
"@nestjs/core": "^10.1.3",
"@nestjs/testing": "^10.1.3",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.8",
"coveralls": "^3.1.1",
"gulp": "^4.0.2",
"gulp-sequence": "^1.0.0",
"gulp-typescript": "^5.0.1",
"jest": "^29.6.2",
"node-notifier": "^10.0.1",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"bugs": {
"url": "https://github.com/nestjsx/nest-access-control/issues"
},
"homepage": "https://github.com/nestjsx/nest-access-control#readme",
"dependencies": {
"accesscontrol": "^2.2.1",
"tslib": "^2.6.2"
},
"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
}
}
}