-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
59 lines (59 loc) · 1.52 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": "sequelize-guard",
"version": "0.1.2",
"description": "An Authorization Library for Sequelize",
"main": "lib/index.js",
"scripts": {
"debug": "node ./tests/runner.js --inspect-brk=9229",
"test": "mocha ./tests/runner.js --reporter spec",
"cover": "nyc npm test && nyc report --reporter=lcov --reporter=text-summary",
"coverall": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lotivo/sequelize-guard.git"
},
"keywords": [
"sequelize-guard",
"guard",
"sequelize",
"authorize",
"authorization",
"guard-sequelize",
"role",
"permission",
"acl",
"sequelize-acl"
],
"author": "Pankaj Vaghela <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/lotivo/sequelize-guard/issues"
},
"homepage": "https://github.com/lotivo/sequelize-guard#readme",
"engines": {
"node": ">=4.2.4"
},
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"esdoc": "^1.1.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jsdoc": "^24.0.6",
"eslint-plugin-prettier": "^3.1.3",
"istanbul": "^0.4.5",
"mocha": "^7.1.2",
"nyc": "^15.0.1",
"prettier": "^2.0.5",
"prettier-plugin-jsdoc": "0.0.17",
"sqlite3": "^4.2.0"
},
"dependencies": {
"faker": "^4.1.0",
"lodash": "^4.17.15",
"node-cache": "^5.1.0",
"sequelize": "^5.21.7"
}
}