Files
directus/packages/schema/package.json
2020-11-09 11:21:43 -05:00

52 lines
1.2 KiB
JSON

{
"name": "@directus/schema",
"version": "0.0.25",
"description": "Utility for extracting information about existing DB schema",
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"lint": "prettier --check .",
"test": "npm run lint && ts-mocha test/**/*.spec.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/directus/next.git"
},
"keywords": [
"sql",
"knex",
"schema",
"mysql",
"postgresql",
"sqlite3",
"javascript"
],
"author": "Rijk van Zanten <rijkvanzanten@me.com>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/directus/next/issues"
},
"homepage": "https://github.com/directus/next#readme",
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/lodash.flatten": "^4.4.6",
"@types/mocha": "^8.0.3",
"@types/node": "^14.0.13",
"chai": "^4.2.0",
"husky": "^4.2.5",
"knex": "^0.21.1",
"lint-staged": "^10.2.11",
"mocha": "^8.2.0",
"mysql": "^2.18.1",
"pg": "^8.4.0",
"prettier": "^2.0.5",
"ts-mocha": "^7.0.0",
"typescript": "^3.9.5"
},
"dependencies": {
"lodash.flatten": "^4.4.0"
}
}