-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
64 lines (64 loc) · 2.12 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
{
"name": "knextancy",
"version": "2.5.0",
"description": "Small library that provides a way of implementing multi-tenancy using table prefixes.",
"main": "lib/index.js",
"scripts": {
"compile": "babel -d lib/ src/",
"prepublish": "npm run compile",
"lint": "eslint src/ spec/",
"test": "npm run test:mysql && npm run test:postgres",
"test:mysql": "npm run lint && DB_CLIENT=mysql NODE_ENV=test mocha --compilers js:babel-core/register --timeout 30000 --reporter spec --recursive --watch-extensions .spec.js ./spec",
"test:postgres": "npm run lint && DB_CLIENT=postgres NODE_ENV=test mocha --compilers js:babel-core/register --timeout 30000 --reporter spec --recursive --watch-extensions .spec.js ./spec",
"waitdb": "waitforit -full-connection $POSTGRES_PORT -timeout 60 && waitforit -full-connection $MYSQL_PORT -timeout 60",
"waitdb-test": "npm run waitdb && npm test"
},
"author": "Bravi (http://www.bravi.com.br)",
"contributors": [
"Eduardo Nunes (https://github.com/esnunes)",
"Max Claus Nunes (https://github.com/maxcnunes)",
"Paulo Ragonha (https://github.com/pirelenito)"
],
"license": "MIT",
"keywords": [
"knex",
"multi",
"tenancy",
"mysql",
"postgres"
],
"repository": {
"type": "git",
"url": "https://github.com/bravi-software/knextancy"
},
"bugs": "https://github.com/bravi-software/knextancy/issues",
"peerDependencies": {
"knex": ">=0.8 && <=0.13"
},
"dependencies": {
"babel-runtime": "^6.6.1",
"debug": "^2.2.0",
"knex": "^0.11.10",
"promise-async-cache": "^1.0.0"
},
"devDependencies": {
"babel-cli": "^6.7.7",
"babel-core": "^6.7.6",
"babel-eslint": "^4.1.3",
"babel-plugin-transform-runtime": "^6.7.5",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"chai": "^1.9.1",
"eslint": "^1.5.0",
"eslint-config-airbnb": "0.0.8",
"express": "^4.10.1",
"harmony-reflect": "^1.1.0",
"knex": "^0.13.0",
"knex-spec-helper": "^0.1.2",
"mocha": "^2.4.5",
"mysql": "^2.5.2",
"pg": "^6.1.0",
"sinon": "^1.17.6",
"supertest": "^0.14.0"
}
}