-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 869 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
{
"name": "cilo",
"version": "2.0.0",
"description": "A wrapper around sequelize to build multi-tenant applications",
"main": "index.js",
"author": "M. Khaled Badenjki",
"license": "MIT",
"scripts": {
"dev": "nodemon index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"semantic-release": "semantic-release",
"lint": "eslint . --ext .js"
},
"dependencies": {
"mocha": "^10.2.0",
"pg": "^8.10.0",
"sequelize": "^6.31.0",
"umzug": "^3.2.1",
"yargs": "^17.7.2"
},
"devDependencies": {
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^10.0.4",
"eslint": "^8.42.0",
"nodemon": "^2.0.22",
"semantic-release": "^21.0.5"
},
"bin": {
"cilo": "./cli/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/khaled-badenjki/cilo.git"
}
}