mirror of
https://github.com/directus/directus.git
synced 2026-01-24 00:58:25 -05:00
51 lines
1.1 KiB
JSON
51 lines
1.1 KiB
JSON
{
|
|
"name": "@directus/schema",
|
|
"version": "9.0.0-rc.20",
|
|
"description": "Utility for extracting information about existing DB schema",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"scripts": {
|
|
"build": "tsc --build && echo \"Built successfully\"",
|
|
"prepare": "npm run build",
|
|
"lint": "prettier --check .",
|
|
"test": "npm run lint && ts-mocha test/**/*.spec.ts",
|
|
"dev": "npm-watch build"
|
|
},
|
|
"watch": {
|
|
"build": {
|
|
"patterns": [
|
|
"src"
|
|
],
|
|
"extensions": "ts",
|
|
"quiet": true,
|
|
"silent": true
|
|
}
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/directus/directus.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/directus/issues"
|
|
},
|
|
"homepage": "https://github.com/directus/directus#readme",
|
|
"devDependencies": {
|
|
"npm-watch": "^0.7.0",
|
|
"typescript": "^3.9.5"
|
|
},
|
|
"peerDependencies": {
|
|
"knex": "^0.21.12"
|
|
}
|
|
}
|