-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
119 lines (119 loc) · 4.08 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "@knodes/nest-casl",
"version": "0.0.3",
"description": "A module for managing authorization in your nest application, using casl.",
"license": "MIT",
"engines": {
"node": ">= 14.18.0"
},
"repository": {
"type": "git",
"url": "https://github.com/KnodesCommunity/nest-casl.git"
},
"bugs": {
"url": "https://github.com/KnodesCommunity/nest-casl/issues"
},
"homepage": "https://knodescommunity.github.io/nest-casl/",
"author": "GerkinDev",
"main": "dist/index.js",
"files": [
"src",
"dist"
],
"scripts": {
"build": "nest build",
"build:watch": "npm run build -- --watch",
"doc": "typedoc",
"doc:update-peer-deps": "node docs-source/plugin/peer-deps-list.js",
"format:pkg": "format-package --write",
"lint": "eslint \"{,{src,test}/**/}*.{j,t}s\"",
"lint:commit-message:current": "commitlint -E HUSKY_GIT_PARAMS",
"lint:fix": "npm run lint -- --fix",
"lint:quick": "npm run lint -- --cache",
"precommit": "npm run lint:quick && npm run test:quick && npm run build && npm run doc && (git checkout HEAD docs || :)",
"prepare": "npm run prepare:husky",
"prepare:husky": "[ -d ./node_modules/husky ] && husky install || true",
"release:do": "standard-version -a",
"release:trigger": "git commit --allow-empty -m \"ci(release): trigger release\"",
"release:trigger:alpha": "git commit --allow-empty -m \"ci(release): trigger alpha release\"",
"test": "jest --config ./jest.config.js",
"test:ci": "JEST_JUNIT_OUTPUT_NAME=junit.xml npm run test -- --all --ci --reporters=default --reporters=jest-junit --collectCoverage",
"test:quick": "npm run test -- --only-changed"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"standard-version": {
"releaseCommitMessageFormat": "chore(release): {{currentTag}}\n\n[skip ci]",
"scripts": {
"postbump": "echo $(node -e \"console.log('v' + require('./package.json').version)\") > ./VERSION",
"postchangelog": "npm run doc:update-peer-deps && npm run doc -- --gitRevision $(cat ./VERSION)",
"precommit": "git add --force docs README.md"
}
},
"peerDependencies": {
"@casl/ability": "^5.0.0",
"@nestjs/common": "^8.0.0",
"@nestjs/core": "^8.0.0",
"lodash": "^4.17.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.0.0"
},
"devDependencies": {
"@casl/ability": "^5.4.3",
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@knodes/eslint-config": "^1.6.3",
"@knodes/typedoc-plugin-code-blocks": "^0.22.2",
"@knodes/typedoc-plugin-pages": "^0.22.2",
"@nestjs/cli": "^8.2.2",
"@nestjs/common": "^8.4.0",
"@nestjs/core": "^8.4.0",
"@nestjs/jwt": "^8.0.0",
"@nestjs/passport": "^8.2.1",
"@nestjs/platform-express": "^8.4.0",
"@nestjs/schematics": "^8.0.7",
"@nestjs/testing": "^8.4.0",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.1",
"@types/lodash": "^4.14.179",
"@types/node": "^17.0.21",
"@types/passport-jwt": "^3.0.6",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"ajv": "^8.10.0",
"eslint": "^8.10.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsdoc": "^37.9.6",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-rxjs": "^5.0.2",
"eslint-plugin-sort-export-all": "^1.2.1",
"expect": "^27.5.1",
"expect-type": "^0.13.0",
"express": "^4.17.3",
"format-package": "^6.1.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"jest-extended": "^2.0.0",
"jest-junit": "^13.0.0",
"jest-matcher-utils": "^27.5.1",
"lodash": "^4.17.21",
"passport": "^0.5.2",
"passport-jwt": "^4.0.0",
"prettier": "^2.5.1",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.5.4",
"standard-version": "^9.3.2",
"supertest": "^6.2.2",
"ts-jest": "^27.1.3",
"ts-loader": "^9.2.7",
"ts-node": "^10.7.0",
"tsconfig-paths": "^3.13.0",
"typedoc": "^0.22.12",
"typescript": "^4.5.5"
}
}