-
-
Notifications
You must be signed in to change notification settings - Fork 269
/
package.json
59 lines (59 loc) · 1.51 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
{
"name": "@casl/mongoose",
"version": "8.0.2",
"description": "Allows to query accessible records from MongoDB based on CASL rules",
"main": "dist/es6c/index.js",
"es2015": "dist/es6m/index.mjs",
"typings": "dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/es6m/index.mjs",
"require": "./dist/es6c/index.js"
}
},
"repository": {
"type": "git",
"url": "https://github.com/stalniy/casl.git",
"directory": "packages/casl-mongoose"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://casl.js.org",
"scripts": {
"prebuild": "rm -rf dist/* && npm run build.types",
"build": "BUILD_TYPES=es6m,es6c dx rollup -e @casl/ability/extra,@casl/ability,mongoose",
"build.types": "dx tsc",
"lint": "dx eslint src/ spec/",
"test": "dx jest",
"prerelease": "npm run lint && npm test && NODE_ENV=production npm run build",
"release": "dx semantic-release"
},
"keywords": [
"casl",
"mongo",
"authorization",
"acl",
"permissions"
],
"author": "Sergii Stotskyi <sergiy.stotskiy@gmail.com>",
"license": "MIT",
"peerDependencies": {
"@casl/ability": "^6.7.0",
"mongoose": "^6.0.13 || ^7.0.0 || ^8.0.0"
},
"devDependencies": {
"@casl/ability": "^6.0.0",
"@casl/dx": "workspace:^1.0.0",
"@types/jest": "^29.0.0",
"chai": "^4.1.0",
"chai-spies": "^1.0.0",
"mongoose": "^8.0.0"
},
"files": [
"dist",
"*.d.ts",
"index.js"
]
}