forked from switchit-conseil/nestjs-casbin-module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.79 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
63
64
65
66
67
68
{
"name": "@switchit/nestjs-casbin",
"version": "0.1.5",
"description": "NestJS casbin Integration by SWITCH IT CONSULTING",
"author": "Switch IT - Consulting",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index",
"private": false,
"keywords": ["nestjs", "casbin", "typescript", "web", "framework"],
"bugs": {
"url": "https://github.com/switchit-conseil/nestjs-casbin-module/issues"
},
"homepage": "https://github.com/switchit-conseil/nestjs-casbin-module#readme",
"contributors": [
"Nicolas Macherey <nicolas.macherey@gmail.com>"
],
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.json",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json -c tslint.json",
"test": "jest --runInBand --verbose ./test"
},
"dependencies": {
"casbin-mongoose-adapter": "^2.0.0",
"mongoose": "^5.7.5",
"@nestjs/common": "^6.0.0",
"@nestjs/core": "^6.0.0",
"rxjs": "^6.3.3"
},
"devDependencies": {
"@nestjs/testing": "^6.1.1",
"@types/chai": "^4.2.4",
"@types/cucumber": "^4.0.7",
"@types/express": "4.16.1",
"@types/jest": "24.0.11",
"@types/node": "11.13.4",
"@types/supertest": "2.0.7",
"cucumber": "^6.0.2",
"gherkin-jest": "^0.24.0",
"jest": "24.7.1",
"nodemailer-stub": "^1.2.1",
"prettier": "1.17.0",
"supertest": "4.0.2",
"ts-jest": "24.0.2",
"ts-node": "8.1.0",
"tsc-watch": "2.2.1",
"tsconfig-paths": "3.8.0",
"tslint": "5.16.0",
"typescript": "3.4.3"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": ".",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"src/**/*.ts"
],
"testEnvironment": "node"
}
}