-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 2.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
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
{
"name": "@lykmapipo/permission",
"version": "0.8.35",
"description": "A representation of ability to perform an action or access a resource.",
"main": "index.js",
"scripts": {
"test": "grunt test",
"integration:test": "grunt integration",
"http:test": "grunt http",
"unit:test": "grunt unit",
"doc": "grunt doc",
"dev": "npm run seed && npm run start",
"start": "BASE_PATH=./examples node ./examples/app.js",
"seed": "BASE_PATH=./examples node ./examples/seed.js",
"format": "prettier --write \"{lib,test,.}/**/*.js\" --loglevel silent"
},
"repository": {
"type": "git",
"url": "https://github.com/lykmapipo/permission.git"
},
"keywords": [
"lykmapipo",
"mongoose",
"mongoose-module",
"permission",
"permit",
"access",
"perform",
"role",
"group",
"ability",
"capability",
"functionality"
],
"contributors": [
{
"name": "lykmapipo",
"email": "lallyelias87@gmail.com",
"url": "https://github.com/lykmapipo"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/lykmapipo/permission/issues",
"email": "lallyelias87@gmail.com"
},
"homepage": "https://github.com/lykmapipo/permission",
"sandbox": {
"url": "https://permision.herokuapp.com",
"schema": "https://permision.herokuapp.com/v1/permissions/schema",
"apidoc": "https://lykmapipo.github.io/permission/",
"client_id": "",
"client_secret": "",
"urls": [
{
"resource": "Permission",
"link": "https://permision.herokuapp.com/v1/permissions",
"scopes": [
"permission:*"
],
"methods": [
"get",
"put",
"patch"
]
}
]
},
"devDependencies": {
"@benmaruchu/faker": "^4.3.0",
"@codetanzania/majifix-common": "^0.20.0",
"@lykmapipo/express-test-helpers": "^0.9.14",
"@lykmapipo/mongoose-test-helpers": "^0.8.4",
"chai": "^4.2.0",
"grunt": "^1.3.0",
"grunt-apidoc": "^0.11.0",
"grunt-contrib-jshint": "^3.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-mocha-test": "^0.13.3",
"handlebars": "^4.7.6",
"jshint-stylish": "^2.2.1",
"lodash.template": "^4.5.0",
"mocha": "^8.2.1",
"mongoose": ">=5.11.8",
"prettier": "^2.2.1",
"shelljs": "^0.8.4",
"sinon": "^9.2.2"
},
"peerDependencies": {
"mongoose": ">=5.11.8"
},
"dependencies": {
"@lykmapipo/common": ">=0.42.4",
"@lykmapipo/env": ">=0.17.24",
"@lykmapipo/express-common": ">=0.18.14",
"@lykmapipo/express-rest-actions": ">=0.8.26",
"@lykmapipo/mongoose-common": ">=0.38.4",
"async": ">=3.2.0",
"inflection": ">=1.12.0",
"lodash": ">=4.17.20",
"mongoose-rest-actions": ">=0.30.6"
},
"engines": {
"node": ">=8.11.1",
"npm": ">=5.6.0"
}
}