-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
91 lines (91 loc) · 2.51 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"private": true,
"name": "knex-schema-reader",
"version": "0.0.3",
"description": "Database schema reader and export utility",
"homepage": "https://mattjcowan.github.io/knex-schema-reader/",
"repository": "mattjcowan/knex-schema-reader",
"author": "Matt Cowan (http://www.mattjcowan.com)",
"contributors": [],
"license": "MIT",
"engines": {
"node": ">=4.0 <7.0",
"npm": ">=3.0"
},
"bugs": {
"url": "https://github.com/mattjcowan/knex-schema-reader/issues"
},
"keywords": [
"knex"
],
"bin": {
"knexschemareader": "./bin/cli.js"
},
"main": "dist/index.js",
"jsnext:main": "dist/index.es.js",
"babel": {
"presets": [
"latest",
"stage-0"
],
"plugins": [
"transform-runtime"
]
},
"dependencies": {
"bluebird": "^3.4.6",
"chalk": "^1.1.3",
"co": "^4.6.0",
"commander": "^2.9.0",
"interpret": "^1.0.1",
"knex": "^0.12.6",
"liftoff": "^2.3.0",
"lodash": "^4.16.6",
"minimist": "^1.2.0",
"mysql": "^2.12.0",
"pg": "^6.1.1",
"postinstall-build": "^2.1.3",
"tildify": "^1.2.0"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.17.0",
"babel-eslint": "^7.0.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-latest": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.16.3",
"babel-runtime": "^6.11.6",
"browser-sync": "^2.17.5",
"bs-html-injector": "^3.0.3",
"chai": "^4.0.0-canary.1",
"coveralls": "^2.11.14",
"cross-env": "^3.1.3",
"del": "^2.2.2",
"dotenv": "^2.0.0",
"eslint": "^3.8.0",
"eslint-config-airbnb-base": "^10.0.1",
"eslint-plugin-import": "^2.2.0",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^3.1.2",
"mssql": "^3.3.0",
"ping": "^0.2.1",
"rollup": "^0.36.3",
"rollup-plugin-babel": "^2.6.1",
"sinon": "^2.0.0-pre.3",
"walk-back": "^2.0.1"
},
"scripts": {
"postinstall": "postinstall-build dist \"npm run build\"",
"lint": "eslint src test tools",
"pretest": "npm run build",
"test": "mocha --compilers js:babel-register",
"test:watch": "mocha --compilers js:babel-register --reporter min --watch",
"test:cover": "babel-node ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"build": "node tools/build",
"prepublish": "npm run build",
"publish:docs": "es deploy docs --repo mattjcowan/knex-schema-reader",
"start": "es start docs"
}
}