-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
47 lines (47 loc) · 1.38 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
{
"name": "node-multi-tenant",
"version": "1.0.8",
"description": "Multi-tenant Node.js Application",
"main": "main.js",
"scripts": {
"start": "node main.js",
"test-watch": "npm test -- --watch",
"eslint": "eslint **/*.js --fix --quiet",
"coverage": "npm test && open coverage/index.html",
"test-integration": "nyc --reporter=html --reporter=text mocha ./tests/Integration --exit && open coverage/index.html",
"test": "npm run eslint && nyc --reporter=html --reporter=text mocha tests --recursive --exit && open coverage/index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/deye9/node-multi-tenant.git"
},
"keywords": [
"Multi Tenant",
"Multi Tenancy"
],
"author": "Adegbenga A. Adeye",
"license": "ISC",
"bugs": {
"url": "https://github.com/deye9/node-multi-tenant/issues"
},
"homepage": "https://github.com/deye9/node-multi-tenant#readme",
"dependencies": {
"auto-bind": "^2.1.0",
"dotenv": "^6.2.0",
"pg": "^7.10.0",
"sequelize": "^5.8.2",
"sequelize-cli": "^5.4.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.3.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.2",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"sinon": "^7.3.2",
"standard": "^12.0.1"
}
}