-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
48 lines (48 loc) · 989 Bytes
/
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
{
"name": "koa-rbac",
"version": "2.0.1",
"description": "Role-Based Acess Control for Koa 2",
"author": "Yanick Rochon <yanick.rochon@gmail.com>",
"keywords": [
"rbac",
"access",
"role"
],
"main": "koa-rbac.js",
"scripts": {
"test": "jest --forceExit",
"test-cov": "npm run test -- --coverage"
},
"homepage": "https://github.com/yanickrochon/koa-rbac",
"repository": {
"type": "git",
"url": "https://github.com/yanickrochon/koa-rbac.git"
},
"bugs": {
"url": "https://github.com/yanickrochon/koa-rbac/issues"
},
"dependencies": {
"rbac-a": "^0.2.5"
},
"devDependencies": {
"istanbul": "^0.4.5",
"jest": "^20.0.1",
"koa": "^2.3.0",
"supertest": "^3.0.0"
},
"engines": {
"node": ">=7.6"
},
"license": "MIT",
"jest": {
"testMatch": [
"**/test/**/*.js"
],
"coverageReporters": [
"text-summary",
"lcov"
],
"bail": true,
"testEnvironment": "node"
}
}