forked from yonjah/node_acl_sequelize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.09 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
{
"name": "acl-sequelize",
"version": "0.3.5",
"description": "Node Acl Sequelize Backend",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha test/runner.js",
"cover": "nyc --reporter=lcov --reporter=text mocha 'test/runner.js'",
"lint": "eslint lib/ test/"
},
"repository": {
"type": "git",
"url": "https://github.com/yonjah/node_acl_sequelize"
},
"keywords": [
"middleware",
"acl",
"sequelize",
"postgres",
"mysql"
],
"author": "Yoni Jah <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/yonjah/node_acl_sequelize/issues"
},
"devDependencies": {
"acl": "^0.4.11",
"chai": "~4.2.0",
"conventional-changelog-cli": "^2.0.21",
"eslint": "^6.0.1",
"mocha": "^6.1.4",
"mysql": "^2.17.1",
"mysql2": "^1.6.5",
"nyc": "^14.1.1",
"sequelize": "^5.9.4"
},
"homepage": "https://github.com/yonjah/node_acl_sequelize",
"dependencies": {
"lodash": "^4.17.13"
},
"peerDependencies": {
"sequelize": ">=3.0.0",
"acl": "^0.4.11"
}
}