-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
49 lines (49 loc) · 1.03 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": "knex-schema-builder",
"version": "0.4.10",
"description": "A schema builder module for knex, handles schema initialization and migration",
"main": "index.js",
"scripts": {
"test": "mocha"
},
"files": [
"*.js",
"backup/**/*.js"
],
"repository": {
"type": "git",
"url": "https://github.com/danielgindi/knex-schema-builder"
},
"keywords": [
"knex",
"schema",
"database",
"install",
"migrate",
"mysql",
"postgres",
"sqlite",
"sqlite3"
],
"engines": {
"node": ">=8"
},
"author": "Daniel Cohen Gindi <[email protected]> (https://github.com/danielgindi)",
"license": "MIT",
"bugs": {
"url": "https://github.com/danielgindi/knex-schema-builder/issues"
},
"homepage": "https://github.com/danielgindi/knex-schema-builder",
"dependencies": {
"strip-json-comments": "3.1.1"
},
"peerDependencies": {
"knex": "*"
},
"devDependencies": {
"chai": "^4.2.0",
"knex": "^0.21.5",
"mocha": "^8.1.3",
"mock-knex": "^0.4.9"
}
}